zoukankan      html  css  js  c++  java
  • js动态时间

    一.在<head></head>

    之间写入下面js代码

    <script type="text/javascript" language="JavaScript">
    var timerID = null
    var timerRunning = false
    function MakeArray(size) {
    this.length = size;
    for (var i = 1; i <= size; i++) {
    this[i] = "";
    }
    return this;
    }
    function stopclock() {
    if (timerRunning)
    clearTimeout(timerID);
    timerRunning = false
    }
    function showtime() {
    var now = new Date();
    var year = now.getYear();
    var month = now.getMonth() + 1;
    var date = now.getDate();
    var hours = now.getHours();
    var minutes = now.getMinutes();
    var seconds = now.getSeconds();
    var day = now.getDay();
    Day = new MakeArray(7);
    Day[0] = "星期天";
    Day[1] = "星期一";
    Day[2] = "星期二";
    Day[3] = "星期三";
    Day[4] = "星期四";
    Day[5] = "星期五";
    Day[6] = "星期六";
    var timeValue = "";
    timeValue += year+1900 + "年";
    timeValue += ((month < 10) ? "0" : "") + month + "月";
    timeValue += date + "日 ";
    timeValue += (Day[day]) + " ";
    timeValue += ((hours <= 12) ? hours : hours - 12);
    timeValue += ((minutes < 10) ? ":0" : ":") + minutes;
    timeValue += ((seconds < 10) ? ":0" : ":") + seconds;
    timeValue += (hours < 12) ? "上午" : "下午";
    //document.getElementById("face").innerText = timeValue;
    document.getElementById("face").value = timeValue;
    timerID = setTimeout("showtime()", 1000);
    timerRunning = true
    }
    function startclock() {
    stopclock();
    showtime()
    }
    </script>

    二.在body中在你对应的位置添加以下代码

    <input  type="text" name="face" id="face" size="40" value=""  runat="server" style="border-color: #000080"/>

    切记id,name要和js中的getElementById()对应!

  • 相关阅读:
    Typora集成免费图床:PicGo + Gitee
    Github shields徽章配置方法介绍
    Python爬虫的简易流程
    MVC学习系列——Filter扩展
    MVC学习系列——ActionResult扩展
    JQuery插件,傻傻分不清!
    闲谈前端编码解码、C#编码解码。
    年终总结和职业规划
    MVC学习系列——记一次失败面试后,感想。
    C/C++四种退出线程的方法
  • 原文地址:https://www.cnblogs.com/aiai-An/p/4441982.html
Copyright © 2011-2022 走看看