首页 > 其他 > 详细

获取元素的第二种方法

时间:2020-01-10 21:19:34      阅读:91      评论:0      收藏:0      [点我收藏+]

 

<!DOCTYPE HTML>

<html>

<head>

<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‘);

    //getElementByIdq前面只能是document找到一个元素 getElementsByTagName前面可以是document也可以是别的元素,找到一个集合

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

获取元素的第二种方法

原文:https://www.cnblogs.com/tongguilin/p/12178012.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!