为什么不能用dom0操作
获取到按钮后,像下面这样操作为什么不能触发事件:
var button1=document.getElementsByTagName('input');
button1.onclick=function(){
。。。。。
}
获取到按钮后,像下面这样操作为什么不能触发事件:
var button1=document.getElementsByTagName('input');
button1.onclick=function(){
。。。。。
}
2016-12-23
你是不是写错了 我运行都可以啊
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
</head>
<body>
<input type="button"/>
<input type="button"/>
<input type="button"/>
<input type="button"/>
<script type="text/javascript">
window.onload = function(){
var inputs = document.getElementsByTagName("input");
inputs[0].onclick = function(){
alert("1");
}
}
</script>
</body>
</html>
举报