//--------简单的使用系统加载函数完成对批量属性的值的获取
<html>
<head>respondToValue</head>
<script type="text/javascript">
window.onload=function(){
var oBtn=document.getElementsByTagName(‘input‘);
for(var i=0;i<oBtn.length;i++){
oBtn[i].onclick=function(){
alert(this.value);
}
}
}
</script>
<body>
<input type="button" value="Apple">
<input type="button" value="Banana">
<input type="button" value="Canada">
</body>
</html>
时间: 2024-10-10 08:56:43