Phiên bản đầy đủ: jsB@nk » Trình duyệt » Cửa sổ » Tự động tải lại trang web
URL: https://www.javascriptbank.com/refresh-page-automatic.html
Đoạn mã này sử dụng JavaScript để làm cho trình duyệt tự động tải lại nội dung của trang web sau mỗi 5 phút.
Phiên bản đầy đủ: jsB@nk » Trình duyệt » Cửa sổ » Tự động tải lại trang web
URL: https://www.javascriptbank.com/refresh-page-automatic.html
<script type="text/javascript"><!-- Begin// Created by: Lee Underwoodfunction reFresh() { window.open(location.reload(true))}/* Set the number below to the amount of delay, in milliseconds,you want between page reloads: 1 minute = 60000 milliseconds. */window.setInterval("reFresh()",300000);// End --></script><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->