jQuery / Ajax 按特定字段搜索
我已经完成了所有设置并且工作正常 - id 喜欢做的是让它仅通过表中的一个特定字段进行搜索(带有测试类的 td)。
我正在使用 $('input#SearchBox').quicksearch('table#tablesorter-demo tbody tr');
搜索表中的所有字段,我尝试过:
$('input#SearchBox') .quicksearch('table#tablesorter-demo tbody tr td.test');
但这只会阻止整个搜索工作,想法值得赞赏吗?
I have it all setup and working fine - what id like to do is have it only search by one particular field in a table (td with class of test).
Im using$('input#SearchBox').quicksearch('table#tablesorter-demo tbody tr');
which 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, ideas appreciated?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
工作 JSFiddle 示例
Try this:
Working JSFiddle Example
尝试在你的标准中不那么具体:
Try being less specific in your criteria: