<script type="text/javascript"> $(function(){ $("#filterName").keyup(function(){ $("table tbody tr") .hide() .filter(":contains('"+( $(this).val() )+"')") .show(); }).keyup(); }) </script>
如上代码,实现的是搜索某行的数据是否包含某值,我目前需要实现的是行中的某列包含某值,该如何实现?谢谢!
我测试了一下,可以实现,我是这样写的,基本和你的一样
$(function(){ $("#filterName").keyup(function(){ $("table tbody tr").hide() .filter(":contains("+$(this).val()+")") .show(); }) })
合适查询所有列的,不是指定列。