0
我試圖在Windows 7版本的IE9中自定義日期格式轉換,但date.getUTCDate()
返回前一天的日期。我附上了JS JS小提琴。Date Convesion使用javascript將日期轉換爲上一個日期
//'Tue Apr 25 00:00:00 UTC+0530 2013'
var date = new Date('Tue Apr 25 00:00:00 UTC+0530 2013');
document.write(
(date.getUTCMonth() + 1) + "/" +
date.getUTCDate() + "/" +
date.getUTCFullYear()
);
JS小提琴:http://jsfiddle.net/QzKwE/67
你知道UTC是什麼,對嗎? – Jamiec