Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lamngockhuong/5cb69076412d344025ec2f0e7050b8d7 to your computer and use it in GitHub Desktop.
Save lamngockhuong/5cb69076412d344025ec2f0e7050b8d7 to your computer and use it in GitHub Desktop.
[Code chuyển hướng trang sau một thời gian có đếm ngược] #html #js
<li class="lino">Bạn sẽ chuyển sang trang <a href="http://blog.ngockhuong.com"/>blog.ngockhuong.com</a> sau <span id="time">10</span> giây nữa<br />
<a href="/" onclick="reload();" id="reloadlink" title="Nhấn vào đây để tải lại trang">Tải lại trang<a>
</li>
<script type="text/javascript">
var jgt = 10;
document.getElementById('time').innerHTML = jgt;
function stime(){document.getElementById('time').innerHTML = jgt; jgt = jgt - 1;
if(jgt == 0){clearInterval(timing); location = 'http://blog.ngockhuong.com';}
}
var timing = setInterval("stime();",1000);
</script>
Các bạn có thể tùy chỉnh theo ý thích. Tuy nhiên chú ý đoạn: <span id="time">10</span> và đoạn var jgt = 10; để chỉnh giây lại. Thay số 10 kia bằng số giây bạn muốn tùy chỉnh. Đồng thời thay link muốn chuyển đến (thay http://blog.ngockhuong.com bằng link của bạn)
Nguồn: http://blog.ngockhuong.com/2015/02/share-code-chuyen-huong-trang-sau-mot-thoi-gian.html
@Binvnhehe999
Copy link

``

  • File của bạn sẽ được tải xuống trực tiếp sau sau 10 giây nữa
    Tải lại trang
  • <script type="text/javascript"> var jgt = 10; document.getElementById('time').innerHTML = jgt; function stime(){document.getElementById('time').innerHTML = jgt; jgt = jgt - 1; if(jgt == 0){clearInterval(timing); location = 'https://drive.google.com/uc?export=download&id=17p9bFLJh7SmiN-1mFKOu_Kt95yZBj_AV';} } var timing = setInterval("stime();",1000);</script>

    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment