我已经尽力了,但没有得到结果。我需要的是 YYYY-MM-DD 格式的日期。这是我当前的代码:
function AddDays(days) { var thisDate = new Date(); thisDate.setDate(thisDate.getDate() + days); var dd = ( thisDate.getFullYear() + '-' + (thisDate.getMonth() + 1) + '-' + thisDate.getDate() ); return dd; } alert(AddDays(365));
结果我得到“2014-8-7”,但我想得到它作为 YYYY-MM-DD。我需要它看起来像“2014-08-07”。