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

    function getFormatDate() {
                    var nowDate = new Date();
                    var year = nowDate.getFullYear();
                    var month = nowDate.getMonth() + 1 < 10 ? "0" + (nowDate.getMonth() + 1) : nowDate.getMonth() + 1;
                    var date = nowDate.getDate() < 10 ? "0" + nowDate.getDate() : nowDate.getDate();
                    var hour = nowDate.getHours() < 10 ? "0" + nowDate.getHours() : nowDate.getHours();
                    var minute = nowDate.getMinutes() < 10 ? "0" + nowDate.getMinutes() : nowDate.getMinutes();
                    var second = nowDate.getSeconds() < 10 ? "0" + nowDate.getSeconds() : nowDate.getSeconds();
                    return year + "-" + month + "-" + date + " " + hour + ":" + minute + ":" + second;
                }
  • 相关阅读:
    闭包
    线程与进程
    异常处理
    socket编程
    面向对象编程
    模块
    正则表达式
    递归、二分查找、冒泡算法
    装饰器
    迭代器与生成器
  • 原文地址:https://www.cnblogs.com/duhaoran/p/13968423.html
Copyright © 2011-2022 走看看