关于时间那些小问题

获取时间的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+" ";

你可能感兴趣的:(关于时间那些小问题)