한국어
많은 웹사이트에는 사용자가 등록할 때 읽어야 하는 계약이나 약관이 있습니다. 일부 사용자가 해당 내용을 읽지 않고 바로 "동의함" 버튼을 클릭하여 건너뛰는 것을 방지하기 위해 일정 기간 내에 해당 버튼을 무효화하는 것이 일반적인 방법입니다. 이를 달성하는 방법은 다음과 같습니다:
<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="Agree" /> </form > <script 언어="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--; ("updateinfo()",속도); } } updateinfo() </script> </body> </html>