码迷,mamicode.com
首页 > 其他好文 > 详细

获取元素的第二种方法

时间:2017-05-26 12:05:21      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:http   script   rip   char   数字   ext   alert   body   content   

<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="按钮" /><input type="button" value="按钮" /><input type="button" value="按钮" />‘;

// 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>

获取元素的第二种方法

标签:http   script   rip   char   数字   ext   alert   body   content   

原文地址:http://www.cnblogs.com/zhousha929-/p/6907541.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!