自定义属性
Posted #安生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义属性相关的知识,希望对你有一定的参考价值。
定义三个按钮
点击按钮,出现A、B、C、D字母,点击一下,出现一个
当按钮字母为 D 的时候,继续点击又会重新回到 A
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 5 <title>无标题文档</title> 6 <script> 7 window.onload = function (){ 8 var aBtn = document.getElementsByTagName(\'input\'); 9 var arr = [ \'A\', \'B\', \'C\', \'D\' ]; 10 11 for( var i=0; i<aBtn.length; i++ ){ 12 13 aBtn[i].num = 0; 14 15 aBtn[i].onclick = function (){ 16 // alert( arr[ this.num ] ); 17 this.value = arr[ this.num ]; 18 19 this.num++; 20 if( this.num === arr.length ){ 21 this.num = 0; 22 } 23 }; 24 } 25 }; 26 </script> 27 </head> 28 29 <body> 30 31 <input type="button" value="0" /> 32 <input type="button" value="0" /> 33 <input type="button" value="0" /> 34 35 </body> 36 </html>
以上是关于自定义属性的主要内容,如果未能解决你的问题,请参考以下文章