写了一种判断点击第几个按钮的JavaScript代码如下:
1 <html> 2 <head> 3 <meta charset=‘utf-8‘> 4 </head> 5 <body> 6 <button>第一个</button> 7 <button>第二个</button> 8 <button>第三个</button> 9 <button>第四个</button> 10 <button>第五个</button> 11 <script> 12 var but=document.getElementsByTagName(‘button‘); 13 for(i=0;i<but.length;i++){ 14 but[i].setAttribute(‘i‘,i+1); 15 but[i].onclick=function(){ 16 b=this.getAttribute(‘i‘); 17 alert(‘这是第‘+b+‘个按钮‘); 18 } 19 } 20 </script> 21 </body> 22 </html>
时间: 2024-10-12 21:39:52