最近在做一个模糊查询功能,现在将功能都实现了之后,发现所有的功能都实现了,但是现在查询的时候立马就刷新本页面了,后来在网上找了资料
解决办法如下:
1.在form表单加一个属性:οnsubmit=return false;
2.在查询事件上加自己要用的方法:
$("input[class='input-medium search-query']").live("keyup",function(event){
var activeNav = getValue($("#activeNav"));
if(event.keyCode==13){
if($(this).attr("id")=="search_emConfig"){
//stopDefault(event);
$("#fuzzySearchButton_emConfig").click();
}else if($(this).attr("id")=="search"){
//stopDefault(event);
$("#fuzzySearchButton").click();
}
}
});