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
どうすればこれを入手できますか?
ありがとう
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
どうすればこれを入手できますか?
ありがとう
API を使用して日付オブジェクトをフォーマットする必要があります。
var str = lastday.getDate() + "/" + (lastday.getMonth() + 1) + "/" + lastday.getFullYear();
はい、次のようにできます。
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