Files
g.hnyhua.cn/Mtxfw.shop/_Admin/images/JStime.js
2026-02-07 15:48:27 +08:00

12 lines
330 B
JavaScript

var timer0 = null;
timer0 = setTimeout(showTime,1000);
function showTime()
{
clearTimeout(timer0);
dt = new Date();
var tp = document.getElementById("timePlace");
result = dt.toLocaleTimeString();
tp.innerHTML = result;
timer0 = setTimeout(showTime,1000);
}