jQuery 在具有特定 td 类的字段中搜索
我的搜索当前搜索所有表字段 - 我希望它只搜索具有 td 测试类的字段。
我正在使用
$('input#SearchBox').quicksearch('table#tablesorter-demo tbody tr');
This 搜索表中的所有字段,我已经尝试过:
$('input#SearchBox').quicksearch('table#tablesorter-demo tbody tr td.test');
但这只会阻止整个搜索工作。
我也尝试过:
'$('input#SearchBox').quicksearch('table#tablesorter-demo tbody tr', {'selector': 'td.test'})'
但这没有发现任何东西。
My search currently searches through all the table fields - I would like it to only search the ones that have a td class of test.
I'm using
$('input#SearchBox').quicksearch('table#tablesorter-demo tbody tr');
This searches all the fields in the table, I have tried:
$('input#SearchBox').quicksearch('table#tablesorter-demo tbody tr td.test');
but this just stops the whole search from working.
I also tried:
'$('input#SearchBox').quicksearch('table#tablesorter-demo tbody tr', {'selector': 'td.test'})'
But this doesn't find anything.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这应该有帮助
$('#SearchBox').quicksearch('#tablesorter-demo tbody tr td .test');
I think this should help
$('#SearchBox').quicksearch('#tablesorter-demo tbody tr td .test');