基本上,你有三种方法,必须自己组合字符串:
getDate() // Returns the dategetMonth() // Returns the monthgetFullYear() // Returns the year
例:
var d = new Date();var curr_date = d.getDate();var curr_month = d.getMonth() + 1; //Months are zero basedvar curr_year = d.getFullYear();console.log(curr_date + "-" + curr_month + "-" + curr_year);
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)