第一步:
在body上添加 <body onkeypress="enterConfirm()"> </body>
第二步:
function enterConfirm() { //回车键的值是13 if(event.keyCode == 13){ // 你想执行的事件 } }