美文网首页
关于时间那些小问题

关于时间那些小问题

作者: 东东丶酱 | 来源:发表于2017-07-05 00:04 被阅读0次

    获取时间的js代码

    today.getFullYear();  //分别获取年月日时分秒。
    today.getMonth();
    today.getDate();
    today.getHours();
    today.getMinutes();
    today.getSeconds();
    

    有时候时间按格式不统一很麻烦,有时候显示一位数有时候显示两位数,很不舒服,就想到数字一位的时候小于9这里只用加一个判断就可以

    month=month>9?month:"0"+month;

    示例

    var month=today.getMonth();
      month=month>9?month:"0"+month;
      var date=today.getDate();
      date=date>9?date:"0"+date;
      var hour=today.getHours();
      hour=hour>9?hour:"0"+hour;
      var min=today.getMinutes();
      min=min>9?min:"0"+min;
      var sec=today.getSeconds();
        sec=sec>9?sec:"0"+sec;
      var s=today.getFullYear()+"-"+month+"-"+date+" "+hour+":"+min+":"+sec+" ";
    

    相关文章

      网友评论

          本文标题:关于时间那些小问题

          本文链接:https://www.haomeiwen.com/subject/fbrfhxtx.html