獲取時間的js代碼
today.getFullYear(); //分別獲取年月日時分秒流译。
today.getMonth();
today.getDate();
today.getHours();
today.getMinutes();
today.getSeconds();
有時候時間按格式不統(tǒng)一很麻煩叙凡,有時候顯示一位數(shù)有時候顯示兩位數(shù)晴音,很不舒服灰粮,就想到數(shù)字一位的時候小于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+" ";