问答详情
源自:2-4 IE事件处理程序及跨浏览器解决

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-03-30 09:55

个回答

  • Dong大瓜
    2018-04-01 17:26:14

    你用的是什么浏览器打开attachEvent是老版本IE的东西了,也就是说为了兼容老版本的IE才用的,好像是IE8以下吧