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