zoukankan      html  css  js  c++  java
  • 获取系统时间

    <!DOCTYPE html>
    <html>

    <head>
    <meta charset="UTF-8">
    <title></title>
    </head>

    <body>
    <input type="text" name="" id="input" />
    <script src="js/jquery-2.1.0.js" type="text/javascript" charset="utf-8"></script>

    <script type="text/javascript">
    function getNowFormatDate() {
    var date = new Date();
    var seperator1 = "-";
    var seperator2 = ":";
    var month = date.getMonth() + 1;
    var strDate = date.getDate();
    var strHours = date.getHours();
    var strMinutes = date.getMinutes();
    var strSeconds = date.getSeconds();
    if(month >= 1 && month <= 9) {
    month = "0" + month;
    }
    if(strDate >= 0 && strDate <= 9) {
    strDate = "0" + strDate;
    }
    if(strHours >= 0 && strHours <= 9) {
    strHours = "0" + strHours;
    }
    if(strMinutes >= 0 && strMinutes <= 9) {
    strMinutes = "0" + strMinutes;
    }
    if(strSeconds >= 0 && strSeconds <= 9) {
    strSeconds = "0" + strSeconds;
    }
    var currentdate = date.getFullYear() + seperator1 + month + seperator1 + strDate +
    " " + strHours + seperator2 + strMinutes +
    seperator2 + strSeconds;
    return currentdate;
    }

    $("#input").val(getNowFormatDate())
    </script>
    </body>

    </html>

  • 相关阅读:
    [NOIP2011] 玛雅游戏
    [bzoj4025] 二分图
    [10.2模拟] tree
    [10.3模拟] color
    [10.2模拟] teach
    [10.2模拟] plan
    [10.2模拟] book
    [bzoj4999] This Problem Is Too Simple!
    [9.28模拟] good
    [bzoj3884] 上帝与集合的正确用法
  • 原文地址:https://www.cnblogs.com/lihong-123/p/7344708.html
Copyright © 2011-2022 走看看