나는 퀴즈를 개발했습니다. 자바 스크립트 카운트 다운으로 작동합니다. 카운트 다운은 잘 작동하지만 폼을 제출할 때도 작동합니다. 시간이 초과 될 때만 스크립트가 사용되도록되어 있습니다. 어떻게? 내가 제출하고 시간이 부족할 때만 작업 할 때 수 있습니까 스크립트를 비활성화 코드는 다음과 같습니다 : 양식을 가정퀴즈를위한 자바 스크립트 카운트 다운 타이머
<script type="text/javascript">
var count = 6;
var redirect = "http://www.apphp.com";
function countDown(){
var timer = document.getElementById("timer");
if(count > 0){
count--;
timer.innerHTML = "This page will redirect in "+count+" seconds.";
setTimeout("countDown()", 1000);
}else{
window.location.href = redirect;
}
}
</script>
Our webpage has beed moved. Please update your bookmarks for the new site.
<br>
<span id="timer">
<script type="text/javascript">countDown();</script>
</span>
<a class="form_submit ss_btn" href="#" onclick="return SST.form_submit(widget_50467774);"> Submit </a>
제출 파트는 어디에 있습니까? – mplungjan
Submit –
SST.form_submit에서 ajax 호출을 수행하면 "양식을 서브 미디 할 때도 효과가 있습니까?" – mplungjan