设置Enter键触发提交事件
document.onkeydown=function() { if(window.event.keyCode==13) { var click=document.getElementById("button1").click(); } }