<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
<style>
</style>
<script>
//这样我们就完成了点击3个按钮,分别弹出对应数组中的值,且他们之间互补干扰,这就告诉我们他们可以分别控制三个功能的切换
window.onload = function (){
var aBtn=document.getElementsByTagName('input');
var aP=document.getElementsByTagName('p');
var arr=['A','B','C'];
for(var i=0;i<aBtn.length;i++){
aBtn[i].index=i;//给每一个按钮添加之定义属性索引,并且这样他能找到对应的i,
aBtn[i].οnclick=function(){
//alert(i);如果我们想要弹出 1 2 3的话,这样是行不通的,我们都知道这是闭包产生的影响
alert(this.index);//这样就能找到一组对应关系,可以对应数组中的数据
this.value=arr[this.index];//
//比如我们想用这中匹配关系去匹配相应的P元素,去改变P元素中的值
aP[this.index].innerHTML=arr[this.index];
}
}
}
</script>
</head>
<body>
<input type="button" value="0"/>
<input type="button" value="0"/>
<input type="button" value="0"/>
<p>a</p>
<p>b</p>
<p>c</p>
</body>
</html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
<style>
</style>
<script>
//这样我们就完成了点击3个按钮,分别弹出对应数组中的值,且他们之间互补干扰,这就告诉我们他们可以分别控制三个功能的切换
window.onload = function (){
var aBtn=document.getElementsByTagName('input');
var aP=document.getElementsByTagName('p');
var arr=['A','B','C'];
for(var i=0;i<aBtn.length;i++){
aBtn[i].index=i;//给每一个按钮添加之定义属性索引,并且这样他能找到对应的i,
aBtn[i].οnclick=function(){
//alert(i);如果我们想要弹出 1 2 3的话,这样是行不通的,我们都知道这是闭包产生的影响
alert(this.index);//这样就能找到一组对应关系,可以对应数组中的数据
this.value=arr[this.index];//
//比如我们想用这中匹配关系去匹配相应的P元素,去改变P元素中的值
aP[this.index].innerHTML=arr[this.index];
}
}
}
</script>
</head>
<body>
<input type="button" value="0"/>
<input type="button" value="0"/>
<input type="button" value="0"/>
<p>a</p>
<p>b</p>
<p>c</p>
</body>
</html>