input框触发回车事件

Posted fps2tao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了input框触发回车事件相关的知识,希望对你有一定的参考价值。

 

window.event只能在IE下运行,不能在firefox下运行,这是因为firefox的event只能在事件发生的现场使用。   
在firefox里直接调用event对象会报undefined。
兼容解决方式:

<input type="text" onkeydown="keyup_submit(event);">

<script>
function keyup_submit(e){ 
 var evt = window.event || e; 
  if (evt.keyCode == 13){
    //回车事件
  console.log(e.target.attributes);
  }
}
</script>

 

如果要获取元素的属性等:

 

console.log(e.target.attributes);

 

转 : https://www.cnblogs.com/houweijian/p/5808978.html

 

以上是关于input框触发回车事件的主要内容,如果未能解决你的问题,请参考以下文章

Element UI 中el-input 框回车触发页面刷新问题及解决方案

Element UI 中el-input 框回车触发页面刷新问题及解决方案

Element UI 中el-input 框回车触发页面刷新问题及解决方案

asp.net中没用js绑定回车事件,可是为啥在文本框中输入内容后按回车键还会触发该事件?求大神解释下!

vue监听enter回车按键并解决其他输入框触发

文本框中,回车键触发事件的js代码[多浏览器兼容]