這是4個按鈕我有我下面的網頁是代碼:環路我點擊按鈕在JavaScript
<div id ="topbar" width="80%; height:20px;" style="text-align:center">
<input type="button" value="Click first" onclick="button.toggle();"></input>
<input type="button" value="Click second" onclick="button2.toggle();"></input>
<input type="button" value="Click third" onclick="button3.toggle();"></input>
<input type="button" value="Click fourth" onclick="button4.toggle();"></input>
</div>
頁面加載時,目前,所有的人都是「開」(切換不開或關) 如何把它們全部關閉,然後循環他們是這樣的:
1上休息關閉
2上休息關閉
3休息關閉
4上休息休息關閉
1 O ff ....並且它保持循環。
我試過這種方法
這是怎麼回事?
setInterval ("loop()", 2000);
function loop ()
{
setTimeout ("SetLayer1()", 1000);
}
function SetLayer1()
{
button.toggle(); //all off since all of them are on from start
button2.toggle();
button3.toggle();
button4.toggle();
}
function SetLayer2()
button.toggle(); // button 1 on rest off
//button2.toggle();
//button3.toggle();
//button4.toggle();
}
function SetLayer3()
{
button.toggle(); // button 1 off
button2.toggle(); //button 2 on
//button3.toggle();
//button4.toggle();
}
function SetLayer4()
{
//button.toggle();
button2.toggle();// button 2 off
button3.toggle();// button 3 on
//button4.toggle();
}
您需要發佈的代碼。 – 2011-05-27 02:55:03
是啊,它不那麼容易...... :)我正在嘗試縮進..... 4空格 – Ossi 2011-05-27 02:59:45