JavaScript 단 추 를 누 르 면 회색 이 되 어 여러 번 중복 제출 되 지 않도록 합 니 다.

등록 할 때 계 정 을 활성화 하 는 것 을 검증 하 는 메 일 을 보 내야 합 니 다.메 일의 중복 발송 을 피하 기 위해 서 는 발송 을 클릭 한 후 button 을 설정 하 는 데 시간 이 지나 야 계속 클릭 할 수 있 습 니 다.다음은 간단 한 예 이다.
 
<html>
<head>
<title> , </title>
</head>
<body>
<input type="button" id="btn" value=" " />
<script type="text/javascript">
var wait=60;
function time(o) {
if (wait == 0) {
o.removeAttribute("disabled");
o.value=" ";
wait = 60;
} else {
o.setAttribute("disabled", true);
o.value=wait+" ";
wait--;
setTimeout(function() {
time(o)
},
1000)
}
}
document.getElementById("btn").onclick=function(){time(this);}
</script>
</body>
</html>

좋은 웹페이지 즐겨찾기