1. 程式人生 > >[學習筆記]JS獲取當前日期,年月日

[學習筆記]JS獲取當前日期,年月日

第一種方法:
function CurentTimeMonth()

var now = new Date();

var year = now.getFullYear(); //年
var month = now.getMonth() + 1; //月
var day = now.getDate(); //日

var hh = now.getHours(); //時
var mm = now.getMinutes(); //分

var clock = year + "-";

if(month < 10)
clock += "0";

clock += month;

return (clock); 
}

第二種方法:
function formatDate() {

var d=new Date(); // 獲取當前日期
var m=d.getMonth()+1;

if(m<10){
m="0"+m;
}
var day=d.getDate();
if(day<10){
day="0"+day;
}
var str=d.getYear()+"-"+(m)+"-"+day+" "+d.getHours()+":"+d.getMinutes()+":"+d.getSeconds(); 
return str;
}