如何使用jquery picnet表过滤器过滤html

时间:2012-03-19 23:59:53

标签: jquery

我有picnet table filter设置并且正常工作!但我在我的表中有一个包含链接的colunm。默认过滤器仅过滤<a>内的文本,此示例为26。 以任何方式让它过滤链接中的数据内容属性。这样我可以输入zshare.net而不是'26'来显示包含它的行?

如果没有这样的插件我可以用。

<td><a rel="popover" data-content="10upload, 2shared, badongo, crocko, depositfiles, extabit, fileape, filedropper, filefactory, filesmonster, zshare.net" class="btn btn-mini listpop" data-original-title="Supported mirrors according to website">26</a></td>

1 个答案:

答案 0 :(得分:0)

$("#textbox").keydown(function(){
    var t=$(this).val();  
    $("#table tr") .show();
    $("#table tr td a") .not("a[data-content *="+t+"]").parent().parent()  .hide();
 //parent().parent()= <tr> tag
});