zoukankan      html  css  js  c++  java
  • 六种风格时间显示

    风格一: 星期三,12月15日,2004年
    风格二: 4:02:46下午
    风格三: 星期三,12月15日,2004年 4:02:46下午                        
    风格四: 12/15/04
    风格五: 16:02:46                                                          
    风格六: Wed Dec 15 16:02:46 UTC+0800 2004

    代码:

    <SCRIPT language="javascript">
    <!--
    function initArray()
     {
      for(i=0;i<initArray.arguments.length;i++)
      this[i]=initArray.arguments[i];
     }
     var isnMonths=new initArray("1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月");
     var isnDays=new initArray("星期日","星期一","星期二","星期三","星期四","星期五","星期六","星期日");
     today=new Date();
     hrs=today.getHours();
     min=today.getMinutes();
     sec=today.getSeconds();
     clckh=""+((hrs>12)?hrs-12:hrs);
     clckm=((min<10)?"0":"")+min;clcks=((sec<10)?"0":"")+sec;
     clck=(hrs>=12)?"下午":"上午";
     var stnr="";
     var ns="0123456789";
     var a="";

    function getFullYear(d)
    {
      yr=d.getYear();if(yr<1000)
      yr+=1900;return yr;}
      document.write("<table>");
     
    //下面各行分别是一种风格,把不需要的删掉即可
      document.write("<TR><TD>风格一:</TD><TD>"+isnDays[today.getDay()]+","+isnMonths[today.getMonth()]+""+today.getDate()+"日,"+getFullYear(today)+"年");
      document.write("<TR><TD>风格二:</TD><TD>"+clckh+":"+clckm+":"+clcks+""+clck+"</TD></TR>");
      document.write("<TR><TD>风格三:</TD><TD>"+isnDays[today.getDay()]+","+isnMonths[today.getMonth()]+""+today.getDate()+"日,"+getFullYear(today)+"年 "+clckh+":"+clckm+":"+clcks+""+clck+"</TD></TR>");
      document.write("<TR><TD>风格四:</TD><TD>"+(today.getMonth()+1)+"/"+today.getDate()+"/"+(getFullYear(today)+"").substring(2,4)+"</TD></TR>");
      document.write("<TR><TD>风格五:</TD><TD>"+hrs+":"+clckm+":"+clcks+"</TD></TR>");
      document.write("<TR><TD VALIGN=TOP>风格六:</TD><TD>"+today+"</TD></TR>");

      document.write("</table>");
    //-->
    </SCRIPT>

  • 相关阅读:
    C博客作业--指针
    AI与PS
    Swagger介绍
    仪表板的应用
    弹窗使用
    产品经理
    原型设计
    关于标签的使用意义
    微服务架构
    hive建表导入数据
  • 原文地址:https://www.cnblogs.com/luluping/p/1336956.html
Copyright © 2011-2022 走看看