javascript 在html模板或主题中显示当前时间。我从https://github.com/MariaAlicia收集了这个要点

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 在html模板或主题中显示当前时间。我从https://github.com/MariaAlicia收集了这个要点相关的知识,希望对你有一定的参考价值。

function date_time(id){
        date = new Date;
        year = date.getFullYear();
        month = date.getMonth();
        months = new Array('January', 'February', 'March', 'April', 'May', 'June', 'Jully', 'August', 'September', 'October', 'November', 'December');
        d = date.getDate();
        day = date.getDay();
        days = new Array('Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday');
        h = date.getHours();
        if(h<10)
        {
                h = "0"+h;
        }
        m = date.getMinutes();
        if(m<10)
        {
                m = "0"+m;
        }
        s = date.getSeconds();
        if(s<10)
        {
                s = "0"+s;
        }
        result = ''+days[day]+' '+months[month]+' '+d+' '+year+' '+h+':'+m+':'+s;
        document.getElementById(id).innerHTML = result;
        setTimeout('date_time("'+id+'");','1000');
        return true;
}

/*
<!-- Below code past in the html file where you what to show current time-->
<span id="date_time" class="noprint"></span>
<!--Below code links to a JavaScript file that finds and displays the current time-->
<script type="text/javascript">window.onload = date_time('date_time');</script>
*/

// I collected this gist from https://github.com/MariaAlicia

以上是关于javascript 在html模板或主题中显示当前时间。我从https://github.com/MariaAlicia收集了这个要点的主要内容,如果未能解决你的问题,请参考以下文章

html JavaScript模板示例以HTML或XML格式显示JS数据的呈现技术。

WP主题模板制作修改教程

❤️炫酷黑色电影资讯博客网页模板❤️(电影主题-HTML+CSS+JavaScript-前端大作业)

❤️酷炫奥迪RS汽车主题官网模板❤️(HTML+CSS+JavaScript-前端大作业)

❤️炫酷黑色电影资讯博客网页模板❤️(电影主题-HTML+CSS+JavaScript-前端大作业)

❤️酷炫奥迪RS汽车主题官网模板❤️(HTML+CSS+JavaScript-前端大作业)