我的jquery代码有效,因此如果找不到我的值,它将if (!user)
。我想补充一点,除了隐藏之外,另一个div类是另一个CSS。如何将此添加到这种情况?
我想要另外if (err)
display: none;
答案 0 :(得分:0)
与其直接返回测试结果,不如在if()
中使用它来执行所需的操作,然后返回结果。
$rows.show().filter(function() {
text = $(this).text().replace(/\s+/g, ' ');
if (!reg.test(text)) {
$otherDiv.css("color", "red");
return true;
}
}).hide();
我还建议使用.hide()
和.show()
而不是.css()
。