如果具有.present类的子项具有任何html内容,我试图将类添加到最近的元素。
我的代码......
<article>
<div class="box">
<h2>1 dec</h2>
</div>
<div class="present">
<h1>HAS CONTENT</h1>
</div>
</article>
<script>
$(document).ready(function(){
if ($(".present").html().length > 0) {
$(this).parent().addClass('active');
}
});
</script>
我已经测试了如果带有console.log的条件返回为true,但是活动类没有被添加到父元素。谁能让我知道我在这里做错了什么?
答案 0 :(得分:2)