IE事件處理程序沒效果,提示“Object doesn't support property or method 'attachEvent'”
<!DOCTYPE?HTML> <html> <head> <meta?http-equiv="Content-Type"?content="text/html;?charset=utf-8"> <title>無標題文檔</title> <style> .ee{text-decoration:line-through;?text-decoration:underline;?} </style> </head> <body> <input?type="button"?id="btn3"?value="按下去3"> <script?type="text/javascript"> function?ee(){ ????alert("Hello?Haa!"); ????} var?btn3?=?document.getElementById("btn3"); btn3.attachEvent('onclick',ee); </script> </body> </html>
2018-04-01
你用的是什么瀏覽器打開,attachEvent是老版本IE的東西了,也就是說為了兼容老版本的IE才用的,好像是IE8以下吧