dom0级事件处理
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>DOM事件</title>
<script>
function showx() {
alert("hello");
}
// var btx=document.getElementById('btn2');
// btx.onclick=function () {
// alert("DOM事件0级处理!");
// }
</script>
</head>
<body>
<input type="button" value="按钮" onclick="showx()">
<input type="button" value="按钮2" id="btn2">
</body>
</html>
注释第二个,第一个按钮会弹出,不注释话,两个都不会弹出,什么原因?