大神帮忙看看,为什么点击页面任何地方都没有弹框出现???错误提示为Cannot set property 'onclick' of null 。这是什么意思??代码该如何改??
<!doctype html>
<html>
<head>
<style>
#a{
width:200px;
height:200px;
background-color:red;
}
</style>
<script>
var dk=document.getElementById("a");
dk.onclick=function(e){
e = e || window.e;
if(e.stopPropagation){
e.stopPropagation();
}else{
e.cancelBubble=true;
}
}
document.onclick=function(){
alert('hello');
}
</script>
</head>
<body>
<div id="a">
</div>
</body>
</html>