jQuer 選擇器
:empty選擇器選取空的元素。 空元素指的是不包含子元素或文本的元素。
$(":empty")
選擇所有空元素:
$(document).ready(function(){ $(":empty").css("background", "coral"); });