網(wǎng)站論壇注冊(cè)中常用的一種倒記時(shí)特效代碼
網(wǎng)站論壇注冊(cè)中常用的一種倒記時(shí)代碼
同意條款 document.form1.Submit.disabled = true; var speed = 1000; //速度 var wait = 10; //停留時(shí)間 function updateinfo(){ if(wait == 0){ document.form1.Submit.value = "我同意"; document.form1.Submit.disabled = false; } else{ document.form1.Submit.value = "閱讀條款"+wait; wait--; window.setTimeout("updateinfo()",speed); } } updateinfo();