在说检测回车符之前,需要了解keydown和keypress的区别
比如你可以将检测事件绑定在input上,如下所示:
<input name="remark" id="remark">
$("#remark").keydown(function () { var theEvent = window.event || event; var code = theEvent.keyCode || theEvent.which; if (code == 13) { console.log($("#remark").val()); } });
如果想在整个页面范围内绑定按钮事件,就可以把上面代码中的$("#remark")改成$("body"),这样就可以在整个页面范围内检测按钮事件。
=======================================
如果想用传统的方式来绑定,也可以这样:
<input name="remark" id="remark" onkeydown="ok(event)">
function ok(event) { var theEvent = window.event || event; var code = theEvent.keyCode || theEvent.which; if (code == 13) { console.log($("#remark").val()); } });