IE8-Javascript错误和解决方法是否有任何有用的概述/列表?如:
e.preventDefault() --> e.returnValue = true
或者
node.style.width = 500 --> node.style.width = "500px";
或者
e.stopPropagation() --> e.cancelBubble = true;
我在网上找到了类似this和this的东西。但这些只是 css 错误和一个 javascript 错误。
我需要这个来修复我的应用程序中的错误。