代碼如下:
<form class="form-inline definewidth m20" action="/" method="get">
<input type="text" name="title" id="title"class="abc" value="">
<button type="submit" class="btn" style="margin-right:20px">查詢</button>
<select name="school_type" id="school_type">
</form>
<td style="width:90px; height:24px; text-align:center"><input type="text" name="test" value="" class="a"></td>
test文本框的回車事件會觸發上面表單的提交,這是浏覽器的默認行為,要禁止自動提交,在文本框裡取消默認事件。
代碼如下:
$('.a').keypress(function(e){
if(e.keyCode==13){
e.preventDefault();
}
測試過IE10 FF29正常