jQuery实现页面搜索,搜索筛选用户输入的内容!
HTML:
JQ:
$("table tr:not('#theader')").hide().filter(":contains('"+txt+"')").show().css("background","red"); }else{ $("table tr:not('#theader')").css("background","#fff").show(); } });
})
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。