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