私が見た最も短くて、最も柔軟なjavascript日付は文字列のツール関数を回転します.


javascriptのDateオブジェクトは日付フォーマット関数を提供していないことを知っています.日付オブジェクトを「2015-7-02 20:35:11」などのフォーマットに変換するのはプロジェクトでもよく使われています.最近私達のプロジェクトでコードを見ました.とても短くて、ここで共有します.
Date.prototype.format = function(format) {
	var o = {
		"M+": this.getMonth() + 1, // month
		"d+": this.getDate(), // day
		"h+": this.getHours(), // hour
		"m+": this.getMinutes(), // minute
		"s+": this.getSeconds() // second
	};
    
	if (/(y+)/.test(format)) {
		format = format.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
	}
	
	for (var k in o) {
		if (new RegExp("(" + k + ")").test(format)) {
			format = format.replace(RegExp.$1,
			    RegExp.$1.length == 1 ? o[k] : ("00" + o[k]).substr(("" + o[k]).length));
		}
	}
	return format;
};
このコードは正規表現をサポートしていますので、日付書式文字列を柔軟に作成できます.
var date = new Date();
alert(date.format("yyyy-MM--dd hh:mm:ss"));