html中的回车事件 html中输入框的回车事件,document.onkeydown=function(event) { e = event ? event :(window.event ? window.event : null); if(e.keyCode==13){ //执行的方法 alert('回车检测到了'); search();return false;} } 以上是一个java Other 2023-11-23 55 点赞 0 评论 83 浏览