0

JavaScriptコードは

 var lastday = new Date(curr.setDate(curr.getDate() - curr.getDay() + 5));

出力を取得しています

Fri Oct 25 2013 17:15:12 GMT+0530 (India Standard Time)

出力は正しいですが、次のような出力が必要です

2013/10/25

どうすればこれを入手できますか?

ありがとう

4

2 に答える 2

3

API を使用して日付オブジェクトをフォーマットする必要があります。

var str = lastday.getDate() + "/" + (lastday.getMonth() + 1) + "/" + lastday.getFullYear();
于 2013-10-23T11:49:30.457 に答える
0

はい、次のようにできます。

var lastday = new Date(curr.setDate(curr.getDate() - curr.getDay() + 5));

var date = lastday.getDate();

// 1 is added since it's zero-based value 
// (where zero indicates the first month of the year).
var month = lastday.getMonth() + 1;      
var year = lastday.getFullYear();

// You can change the format to like 'dd/mm/yyyy' or 'mm/dd/yyyy'
// based on your requirements below
var newDate = date + '/' + month + '/' + year;


console.log(newDate); // 25/10/2013
于 2013-10-23T11:57:16.023 に答える