为什么DOM0把script移到head里面后, 不弹框了
<title>无标题文档</title>
<script>
var btn=document.getElementById("btn");
btn.onclick=function() { alert("no");}
</script>
</head>
<body>
<input type="button" value="按钮" id="btn">
</body>
</html>
为什么DOM0把script移到head里面后, 不弹框了? 非要移到body里面才可以
<input type="button" value="按钮" id="btn" onclick="showmes()">
再在script里面封装一个函数, 也是用alert, 放head上面, 又可以显示