87,993
社区成员
发帖
与我相关
我的任务
分享
这是另一个问题,开贴再问吧。 最好提供可调试的demo<html>
<body>
<input type="button" id="button_test" value="测试" />
<script type="text/javascript">
function addEventHandler(target, type, func) {
if (target.addEventListener)
target.addEventListener(type, func, false);
else if (target.attachEvent)
target.attachEvent("on" + type, func);
else target["on" + type] = func;
}
addEventHandler(document.getElementById("button_test"), "click", function () { alert(1); });
addEventHandler(document.getElementById("button_test"), "click", function () { alert(2); });
</script>
</body>
</html>