我这里有这个脚本
<script type="text/javascript">
$(document).ready(function () {
if($('.subhead').is(':empty')){
$(this).css('background-color', 'none !important');
}
});
</script>
我在这里要做的是说如果我的类 .subhead 为空然后更改背景颜色,我在代码中有多个 .subhead div,如果我运行这样的脚本
<script type="text/javascript">
$(document).ready(function () {
if($('.subhead').is(':empty')){
alert('hi');
}else{
alert('hello');
}
});
</script>
它会返回你好
我正在尝试做的事情可能吗?