javascript – 互联网浏览器是否支持e.preventDefault

前端之家收集整理的这篇文章主要介绍了javascript – 互联网浏览器是否支持e.preventDefault前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
互联网浏览器在 javascript不支持e.preventDefault.如果不是什么原因,什么是替代品.请不要建议任何jQuery,mootools的答案.

if(!e)e = window.event;

if (e.preventDefault) { 
    e.preventDefault(); 
} else {
    e.returnValue = false;
}@H_301_5@

解决方法

好的,如果你坚持:

event.preventDefault不起作用,因为它不存在于IE中.

为什么它不存在,人们必须为MS工作.但一般来说,IE并不总是符合标准.

documentation说你可以设置event.returnValue:

false
Default action of the event on the source object is canceled.

并进一步:

Remarks

The value of this property takes precedence over values returned by the function,such as through a Microsoft JScript return statement.

Standards Information

There is no public standard that applies to this property.

preventDefault seems to be supported in IE9.

原文链接:https://www.f2er.com/js/155346.html

猜你在找的JavaScript相关文章