<div id="runtime_span"></div>
<script type="text/javascript">
function show_runtime() {
window.setTimeout("show_runtime()", 1000);
X = new Date("2022/10/01 00:00:00"); //北京时间2022-10-1 00:00:00
Y = new Date();
T = (Y.getTime() - X.getTime());
M = 24 * 60 * 60 * 1000;
a = T / M;
A = Math.floor(a);
b = (a - A) * 24;
B = Math.floor(b);
c = (b - B) * 60;
C = Math.floor((b - B) * 60);
D = Math.floor((c - C) * 60);
runtime_span.innerHTML = "本站勉强运行了: " + A + "天" + B + "小时" + C + "分" + D + "秒"
}
show_runtime();
</script>上一篇:代码美化JS--prismjs
下一篇:各种页面定时跳转