如果 $("#s4-searcharea") 没有 .ms-sbrow 类,我正在尝试执行几行代码。请帮忙!我究竟做错了什么?
一个演示将不胜感激。
========HTML========
<div class="s4-search s4-rp" id="s4-searcharea" style="display: block;">
<table width="100%" cellspacing="0" cellpadding="0" border="0" class="s4-wpTopTable">
<tr class="ms-sbrow">
<td class="ms-sbcell"><input type="text"></td>
</tr>
</table>
</div>
========jQuery========
$('#s4-searcharea').not(':has(".ms-sbrow")', function () {
$('#explore').addClass('minimal');
$('#header-home-icon').css('left','3px');
});