zoukankan      html  css  js  c++  java
  • js格式化当前时间

    function currTime(){
    var date = new Date();
    var Y = date.getFullYear() + '-';
    var M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '-';
    var D = (date.getDate() < 10 ? '0' + date.getDate() : date.getDate()) + '-';
    var h = (date.getHour() < 10 ? '0' + date.getHour() : date.getHour()) + '-';
    var m = (date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes()) + '-';
    var s = (date.getSeconds() < 10 ? '0' + date.getSeconds(): date.getSeconds()) + '-';
    retur Y + M + D + h + m + s;
    }

  • 相关阅读:
    第16次作业
    第15次作业
    第14次作业
    第13次作业
    第12次作业
    第11次作业
    第十次作业
    第九次作业
    第八次作业
    滚动视图练习
  • 原文地址:https://www.cnblogs.com/qqlike/p/14277448.html
Copyright © 2011-2022 走看看