Phiên bản đầy đủ: jsB@nk » Thủ thuật » Chuyển trang với khoảng thời gian
URL: https://www.javascriptbank.com/dynamic-timed-redirect.html
Đoạn mã này giúp bạn tạo hiệu ứng chuyển trang trên một trang web sau một khoảng thời gian nào đó, đồng thời khoảng thời gian này sẽ được hiển thị trên thanh tiêu đề của trang chuyển.
Phiên bản đầy đủ: jsB@nk » Thủ thuật » Chuyển trang với khoảng thời gian
URL: https://www.javascriptbank.com/dynamic-timed-redirect.html
<script>// Created by: Jon Brown :: http://allthingsrunescape.freewebs.comvar c=5;var t;function timedCount() { document.title='JavaScriptBank.com | Redirecting in ' + c + ' seconds'; c=c-1; t=setTimeout("timedCount()",1000); if (c==-1) { clearTimeout(t); document.title='Redirecting ...'; alert( 'Sampled by JavaScriptBank.com' ); self.location="http://www.javascriptbank.com/newPage.html"; }}window.onload=timedCount;</script><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->