美文网首页
当前时间实时刷新js

当前时间实时刷新js

作者: 里昂的凍檸茶 | 来源:发表于2020-07-15 18:19 被阅读0次
var t = null;
t = setTimeout(time,1000);
function time(){
    clearTimeout(t);
    dt = new Date();
    var y = dt.getFullYear();
    var mt = dt.getFullMonth();
    var day = dt.getDate();
    var h =  dt.getHours();
    var m = dt.getMinutes();
    var s = dt.getSeconds();
    document.querySelector('.showTime').innerHTML = '当前时间' +  y + '年' + mt + '月' + day + '日' + '&ensp' + h + '时' + m + '分' + s + '秒';
    t = setTimeout(time,1000);
}

相关文章

网友评论

      本文标题:当前时间实时刷新js

      本文链接:https://www.haomeiwen.com/subject/spyjhktx.html