为什么不用匿名函数也解绑不了?
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
#a{
width: 200px;height: 100px;
background: red;line-height: 100px;text-align: center;
color: orange;font-size: 50px;
}
</style>
</head>
<body>
<input type="button" name="b" id="dianji" value="点击">
<div onclick="alert('哈哈')">哈哈
</div>
<script type="text/javascript">
var button=document.getElementById("dianji");
button.addEventListener("click",function c(){
alert("123");
},false);
button.removeEventListener("click",function c(){
alert("123");
},false);
</script>
</body>
</html>
20
收起
正在回答 回答被采纳积分+1
2回答
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星