我正在使用一个使用AJAX发布的jquery表单,因此我的页面不会刷新。它在firefox和chrome中运行良好。但是,当我使用IE浏览器时,当我点击它时,它可以工作,但是当我在文本框中按Enter键时,它不会遵循相同的功能。我查看了堆栈溢出并找到了[code] [1],但它没有帮助。 Enter fires the form submit
这是我的表格
<form id="form" action="#" autocomplete="off" >
<input type="text" class="text-input" name="address" id="address" value=""
size="23" maxlegnth="30" />
<input type="submit" value="submit" id="btn-submit" height="25" />
</form>
这是我的jquery:
$('#btn-submit').click(function() {
code stufff validating the e-mail
}