var timer;$(document).ready(function(){ if (timer == undefined) timer = window.setInterval(showTime, 1000);}); //显示时间function showTime() { var now = new Date(); document.getElementById("spanTime").innerHTML = now.toLocaleTimeString();}
本文共 251 字,大约阅读时间需要 1 分钟。
var timer;$(document).ready(function(){ if (timer == undefined) timer = window.setInterval(showTime, 1000);}); //显示时间function showTime() { var now = new Date(); document.getElementById("spanTime").innerHTML = now.toLocaleTimeString();}
转载地址:http://lflwx.baihongyu.com/