-6
我有這個JavaScript函數,需要幾天的X號,並返回過去格式日期以「/」爲「 - 」用JavaScript
var GetDateInThePastFromDays = function (days) {
var today = new Date();
_date = new Date(today.getFullYear(), today.getMonth(), today.getDate() - days);
return _date.toLocaleDateString();
}
這工作絕對沒問題的日期,但它返回的日期作爲06/01/2016
,但我希望它返回06-01-2016
,但我似乎無法找到如何正確地做到這一點。
http://stackoverflow.com/questions/1056728/where-can-i-find-documentation-on-formatting-a -date-in-javascript – Teemu
你有660個代表點,但沒有想到谷歌「格式JavaScript日期」?????? –
像這樣使用, var today = new Date(); (today.getMonth()+ 1)+' - '+ today.getDate()+' - '+ today.getFullYear()); 乾杯! – LostCoder