标签:style blog color os io for ar div cti
HTML代码:
1 <input type="button" value="1"/> 2 <input type="button" value="2"/> 3 <input type="button" value="3"/>
JS代码:
1 window.onload=function(){ 2 var oBtn=document.getElementsByTagName(‘input‘); 3 var i=0; 4 for(i=0;i<oBtn.length;i++){ 5 oBtn[i].onclick=function(){ 6 alert(this.value) 7 }; 8 }; 9 }
标签:style blog color os io for ar div cti
原文地址:http://www.cnblogs.com/guozh/p/3937650.html