禁止input一回车就提交的问题

function quickQueryCust(evt){

evt = (evt) ? evt : ((window.event) ? window.event : "") //兼容IE和Firefox获得keyBoardEvent对象
var key = evt.keyCode?evt.keyCode:evt.which; //兼容IE和Firefox获得keyBoardEvent对象的键值
if(key == 13){ //判断是否是回车事件。
//根据需要执行某种操作。
if($('.ac_over').length > 0)
{
return true;
}else
{
return false;
}
}
}

<input name="s" onkeydown="return quickQueryCust(event);" id='input_search_keyword' tabindex="1" autocomplete='off' maxlength="80" value="{main.search_value}" onfocus="if(this.value == 'Software') this.value='';" onblur="if(this.value=='' && $('#s_category').val()=='all') this.value='Software';" />

你可能感兴趣的:(input)