/*调用点击事件*/
function query(){
$("#bquery").click(function() {
var fp = jQuery.trim($("#tquery").val());
if (fp == "") {
$("#wfnli>li").each(function() {
$(this).removeClass("hidrow");
});
} else if (fp != "") {
$("#wfnli>li").each(function() {
var tmr = $(this).children("#wfnlabel").text();
if (tmr.indexOf(fp) > -1)
$(this).removeClass("hidrow");
else
$(this).addClass("hidrow");
});
}
});
}
//回车相应事件
function enterTel(){
$("#tquery").keypress(function(e){
if (e.which == 13)
$("#bquery").click();
});
}
html部分用的是ul li 布局