$(function () {
//回车事件绑定
$('#txtFind').bind('keyup', function (event) {
if (event.keyCode == "13") {
//回车执行查询
funSearch();
}
});
});

function funSearch()
{
$('table tbody tr').hide()
.filter(":contains('" + ($('#txtFind').val().toUpperCase()) + "')")
.show();
}

相关文章:

  • 2021-12-20
  • 2021-06-22
  • 2021-12-10
  • 2021-12-10
  • 2021-11-22
  • 2022-12-23
  • 2021-12-10
猜你喜欢
  • 2022-12-23
  • 2021-12-10
  • 2021-07-08
  • 2022-12-23
  • 2021-08-11
  • 2022-12-23
  • 2021-11-22
相关资源
相似解决方案