如何处理 JavaScript 中 Internet Explorer 和 addEventListener 问题"对象不支持此属性或方法"?

javascriptobject oriented programmingfront end technology

要处理 JavaScript 中的"对象不支持此属性或方法"问题,在使用事件和 Internet Explorer 时,请使用此减号更新代码

示例

<html>
   <head>
      <meta http-equiv="X-UA-Compatible" content="IE=edge;" />
   </head>
   <body>
   ...
   </body>
</html>

您也可以使用 IE 中的 attachmentEvent 来解决此问题,如下所示 −

if (ev.addEventListener) {
   ev.addEventListener('click', myText, false);
}
else if (ev.attachEvent) {
    ev.attachEvent('onclick', myText);
}

相关文章