Day2----respondToValue

//--------简单的使用系统加载函数完成对批量属性的值的获取

<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>

posted on 2014-11-21 21:48  fleshy  阅读(100)  评论(0编辑  收藏  举报

导航