仅在 IE 9.0.11 中,当我在文本框中按 Enter 键时,提交事件就会触发。如果我单击搜索按钮,则不会触发“提交”事件。此时页面正在向自身提交。清除点击事件在这里正常触发。
我有 IE 9.0.12,它表现正常。
HTML 表单
<form name="frmCollegeReview" method="Post" action="">
<table border="0" cellspacing="0" style="border-collapse: collapse" width="100%"
id="table3">
<tr>
<td width="15%" class="lineitem0">College Key</td>
<td width="85%" class="lineitem0">
<input maxlength="6" name="txtCollegeKey" size="15" class="field" value="">
</td>
</tr>
<tr>
<td width="15%"> </td>
<td width="85%">
<input type="image" src="/pics/btn/btn_search.gif" alt="Search" id="formSubmit">
<a href="#" id="formReset">
<img border="0" src="/pics/btn/btn_clear.gif">
</a>
</td>
</tr>
</table>
</form>
jquery 提交事件
$("#" + CollegeReview._enum.ClearFormButton).live("click", function () {
$("input[name='" + CollegeReview._enum.CollegeKey + "']").val(0);
return false;
});
$("form[name='" + CollegeReview._enum.SeachForm + "']").live('submit', function () {
CollegeReview.PopulateForReview();
return false;
});