use:not(selector)隐藏类不等于搜索参数的元素

时间:2017-04-11 20:08:32

标签: jquery

以下行有效。当我在搜索字段中输入ID 22时,它会显示包含22的所有行,其中包括2212,8922 ...

$('#patientTable .ID:not(:contains("' + sID + '"))').parent().hide();

现在我想要隐藏除完全匹配的行之外的所有行。我尝试了以下代码。它什么都不返回。请帮忙。

$('#patientTable .ID:not(sID)').parent().hide();

0 个答案:

没有答案