中文(繁体)
在會員註冊時很多網站都有一份協議或條款提供給用戶閱讀,又為了避免部分用戶不閱讀而直接點擊"我同意"按鈕跳過,通常的方法便是在一段時間內使按鈕失效,實現方法如下:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>同意條款</title> </head> <body> <form id="form1" name="form1" method="post" action=""> <input type="submit" name="Submit" value="同意" /> </form> <script language="javascript" > document.form1.Submit.disabled = true; var speed = 1000; //速度var wait = 10; //停留時間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(); </script> </body> </html>