zoukankan      html  css  js  c++  java
  • javascript时钟

     <script language="JavaScript" type="text/javascript">
             function nowTime(format) {
                 var dt = new Date();
                 //年份
                 this.Year = dt.getFullYear();
                 //月份
                 this.Month = dt.getMonth() + 1;
                 //日期
                 this.Day = dt.getDate();
                 //星期几,数字
                 this.Week = dt.getDay();
                 //星期几,中文
                 this.WeekDay = '日一二三四五六'.charAt(dt.getDay());
                 //24制小时
                 this.Hours24 = dt.getHours();
                 //12制小时
                 this.Hours12 = this.Hours24 > 12 ? this.Hours24 - 12 : this.Hours24;
                 //分钟
                 this.Minutes = dt.getMinutes();
                 //秒
                 this.Seconds = dt.getSeconds();
                 format = format.replace("yy", this.Year);
                 format = format.replace("MM", this.Month);
                 format = format.replace("dd", this.Day);
                 format = format.replace("HH", this.Hours24);
                 format = format.replace("hh", this.Hours12);
                 format = format.replace("mm", this.Minutes);
                 format = format.replace("ss", this.Seconds);
                 format = format.replace("ww", this.Week);
                 format = format.replace("WW", this.WeekDay);
                 //时间显示在页面中哪个标签里,这里是其id
                 this.toShow = function (element) {
                     document.getElementById(element).innerHTML = format;
                 }
             }
    </script>

    调用

    <div id="time" >
    <script language="JavaScript" type="text/javascript" defer="defer">
        setInterval("new nowTime('yy年MM月dd日 HH:mm:ss 星期WW').toShow('time')", 1000);
    </script></div>

  • 相关阅读:
    IOC容器特性注入第六篇:利用MVC注入点,把容器启动
    IOC容器特性注入第五篇:查找(Attribute)特性注入
    以女朋友为例讲解 TCP/IP 三次握手与四次挥手
    Kali信息收集
    Python3 异常处理
    Python3 hasattr()、getattr()、setattr()、delattr()函数
    Python3 常用模块
    Python设计模式——外观模式
    Python设计模式——模版方法模式
    一个很神奇的类
  • 原文地址:https://www.cnblogs.com/net-study/p/3287122.html
Copyright © 2011-2022 走看看