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

自定义属性

时间:2020-01-14 19:06:12      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:index   nts   cti   put   body   var   btn   属性   type   

<script> 

window.onload = function (){ 

    var aBtn = document.getElementsByTagName(‘input‘); 

     

    for( var i=0; i<aBtn.length; i++ ){ 

         

        aBtn[i].index = i; // 自定义属性(索引值) 

         

        aBtn[i].onclick = function (){ 

             

            // alert( i ); // 3 

            alert( this.index ); 

         

        }; 

    } 

}; 

</script> 

</head> 

 

<body> 

 

<input type="button" value="btn1" /> 

<input type="button" value="btn2" /> 

<input type="button" value="btn3" /> 

自定义属性

标签:index   nts   cti   put   body   var   btn   属性   type   

原文地址:https://www.cnblogs.com/tongguilin/p/12193569.html

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