Last active
July 2, 2022 07:50
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
``
Tải lại trang