<!doctype html>
<html>
<body>
<div id = 'div' style = 'width:100px;height:100px;background:#000000;'></div>
<script type = 'text/javascript'>
document.getElementById('div').addEventListener('click',happen(),true);
function happen()
{
alert(1)
}
</script>
</body>
</html>
在上面的代码中,为什么在页面加载时触发事件而不是在我单击 div 时触发...这也是正确的事件名称 click 或 onclick ....