这是我的代码。我在firefox以及chrome中试过这个但是我们没有工作
HTML:
<form id="leform">
<div>
Name: <input type="text" name="firstname">
<textarea type="text" name="lastname"></textarea>
</div>
<input type="submit">
</form>
脚本:
$(document).ready(function() {
$(document).keypress(function(e) {
if (e.which == 13 && e.target.tagName != "TEXTAREA") {
return false;
}
});
});