input框触发回车事件

 

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



 

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

 

console.log(e.target.attributes);

 

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

 

转载于:https://www.cnblogs.com/fps2tao/p/10486956.html

你可能感兴趣的:(input框触发回车事件)