首页 > 代码库 > 获取元素的第二种方法

获取元素的第二种方法

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>

<script>
window.onload = function (){
// document.title = 123;
// document.body.innerHTML = ‘abc‘;
var aBtn = document.getElementsByTagName(‘input‘);

// alert(aBtn.length);

document.body.innerHTML = ‘<input type="button" value="http://www.mamicode.com/按钮" /><input type="button" value="http://www.mamicode.com/按钮" /><input type="button" value="http://www.mamicode.com/按钮" />‘;

// alert(aBtn.length);
aBtn[0].onclick = function (){ alert(1); };
aBtn[1].onclick = function (){ alert(1); };
aBtn[2].onclick = function (){ alert(1); };

// 重复执行某些代码
// 每次执行的时候,有个数字在变化
};
</script>

</head>

<body>
</body>
</html>

获取元素的第二种方法