日期:2014-05-16  浏览次数:20475 次

JS计时求助
假设现在有五个按钮,请问如何实现如下功能:
1)当我单击任何一个按钮后,其它按钮则变成为灰色不可用,此按钮则变为红色
2)当我再次单击此按钮后,其它按钮不再禁用,变为可用。
3)与此同时,一个DIV中开始进行计时,以秒为单位,再次单击后则归零。
请教指定思路
------解决方案--------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<style>
.red{background:red;}
</style>
<script>
window.onload=function()
{
var aButton=document.getElementsByTagName('input');
var oDiv=document.getElementById('timer');
var timer=null;
var times=0;
for(var i=0;i<aButton.length;i++)
{
aButton[i].onclick=function()
{
clearInterval(timer);
if(this.className=='')
{
this.className='red';
for(var i=0;i<aButton.length;i++)
{
if(aButton[i]!=this)
{
aButton[i].className='';
aButton[i].disabled=true;
}
}
}
else
{
this.className='';
for(var i=0;i<aButton.length;i++)
{
if(aButton[i]!=this)
{
aButton[i].className='';
aButton[i].disabled=false;
}
}
times=0;
timer=setInterval(function(){
oDiv.innerHTML=times++;
},1000);

}


}
}
}

</script>
</head>
 
<body>
    <input type="button" value="按钮一" />
    <input type="button" value="按钮二" />
    <input type="button" value="按钮三" />
    <input type="button" value="按钮四" />
    <input type="button" value="按钮五" />
    <div class="timer" id="timer">
     开始计时
    </div>
</body>
</html>