zoukankan      html  css  js  c++  java
  • js获取本机时间,即时显示时间

    <script>
    //     var myDate = new Date();
    //
         myDate.getYear();       //获取当前年份(2位)
    //
         myDate.getFullYear();   //获取完整的年份(4位,1970-????)
    //
         myDate.getMonth();       //获取当前月份(0-11,0代表1月)
    //
         myDate.getDate();       //获取当前日(1-31)
    //
         myDate.getDay();         //获取当前星期X(0-6,0代表星期天)
    //
         myDate.getTime();       //获取当前时间(从1970.1.1开始的毫秒数)
    //
         myDate.getHours();       //获取当前小时数(0-23)
    //
         myDate.getMinutes();     //获取当前分钟数(0-59)
    //
         myDate.getSeconds();     //获取当前秒数(0-59)
    //
         myDate.getMilliseconds();   //获取当前毫秒数(0-999)
    //
         myDate.toLocaleDateString();     //获取当前日期
    //
         var mytime=myDate.toLocaleTimeString();     //获取当前时间
    //
         myDate.toLocaleString( );       //获取日期与时间
    function tick() {
    var hours, minutes, seconds, ap;
    var intHours, intMinutes, intSeconds;
    var today;
    today 
    = new Date();
    intHours 
    = today.getHours();
    intMinutes 
    = today.getMinutes();
    intSeconds 
    = today.getSeconds();
    if (intHours == 0) {
    hours 
    = "12:";
    ap 
    = "Midnight";
    else if (intHours < 12) { 
    hours 
    = intHours+":";
    ap 
    = "A.M.";
    else if (intHours == 12) {
    hours 
    = "12:";
    ap 
    = "Noon";
    else {
    hours 
    = intHours + ":";
    ap 
    = "P.M.";
    }
    intMinutes 
    < 10?minutes = "0"+intMinutes+":":minutes = intMinutes+":";
    intSeconds 
    < 10?seconds = "0"+intSeconds+" ":seconds = intSeconds+" ";
    timeString 
    = hours+minutes+seconds+ap;
    Clock.innerHTML 
    = timeString;
    window.setTimeout(
    "tick();"1000);
    }
    window.onload 
    = tick;

    </script>

     

    <span id= "Clock"></span>
  • 相关阅读:
    40种网页常用小技巧(javascript)
    伸缩效果
    震动的超链
    一个模仿图片透明渐变做的表格颜色渐变效果
    荧 光 效 果
    用LoadRunner编写socket应用的测试脚本
    突发奇想写的一篇小科幻(如果可以叫做科幻的话)
    《软件性能测试过程详解与案例剖析》一书在Chinapub上8月份的销售排名持续上升
    建立高效的测试团队
    探索性测试(Exploratory Testing)概述
  • 原文地址:https://www.cnblogs.com/ccsbb/p/1749978.html
Copyright © 2011-2022 走看看