zoukankan      html  css  js  c++  java
  • 显示当前时间

    <html>
    <head>
    <title>显示当前时间</title>
    <script language=JavaScript>
    var timerID = null;
    var timerRunning = false;
    function stopclock (){
    if(timerRunning)
    clearTimeout(timerID);
    timerRunning = false;}
    function startclock () {
    stopclock();
    showtime();}
    function showtime () {
    var now = new Date();
    var hours = now.getHours();
    var minutes = now.getMinutes();
    var seconds = now.getSeconds()
    var timeValue = "" +((hours >= 12) ? "下午 " : "上午 " )
    timeValue += ((hours >12) ? hours -12 :hours)
    timeValue += ((minutes < 10) ? ":0" : ":") + minutes
    timeValue += ((seconds < 10) ? ":0" : ":") + seconds
    document.clock.thetime.value = timeValue;
    timerID = setTimeout("showtime()",1000);
    timerRunning = true;}
    </SCRIPT>
    </head>
    <body onload=startclock()>
    <center>
    <h1>显示当前时间</h1><p>
    <form name=clock >现在时间是:
    <input name=thetime style="font-size: 9pt;color:#000000;border:0" size=12>
    </form>
    </center>
    </body>
    </html>
    如有疑问,请和我一起讨论。
  • 相关阅读:
    初识Mybatis
    Servlet基础
    JSP数据交互(二)
    JSP九大内置对象
    JSP数据交互(一)
    动态网页开发基础
    使用jquery操作dom
    jQuery中的事件与动画
    jQuery选择器
    [leetcode]198. House Robber小偷抢钱
  • 原文地址:https://www.cnblogs.com/crmhf/p/3823235.html
Copyright © 2011-2022 走看看