DOM0级事件处理
<!DOCTYPE html>
<html>
<head>
<title>button</title>
</head>
<script>
var bt = document.getElementById('btn');
bt.onclick = function(){
alert('hhh');
}
</script>
<body>
<div>
<input type="button" value="aaa" id="btn" >
</div>
</body>
</html>
代码跟老师写的一模一样还报这个错误 ,这是为什么 Uncaught TypeError: Cannot set property 'onclick' of null