この記事の例では、JavaScript での時刻形式出力 FormatDate 関数の実装について説明します。皆さんの参考に共有してください。詳細は以下の通りです。
JavaScript には、fmt タグのような日付と時刻のコンテンツ形式を入力する機能がありません:
以下は私がダウンロードした時刻出力関数です。使用する場合はラベルに直接入れて呼び出します。コードは次のとおりです
Date.prototype.Format = function(fmt) { //author: meizz
If (this == "無効な日付") {
"" を返します
}
var o = {
"M " : this.getMonth() 1, //月
"d": this.getDate(), //日
"H ": this.getHours(), //時間
"m ": this.getMinutes(), //分
"s": this.getSeconds(), //秒
" q " : Math.floor((this.getMonth() 3) / 3), //Quarter " 🎜>
"S" : this.getMilliseconds()
//ミリ秒
};
If (/(y)/.test(fmt))
fmt = fmt.replace(RegExp.$1, (this.getFull Year() "")
.substr(4 - RegExp.$1.length));
for (var k in o)
If (new RegExp("(" k ")").test(fmt))
fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k])
: (("00" o[k]).substr(("" o[k]).length));
を返します。
}
を使用する場合は直接使用します
コードをコピー
コードは次のとおりです:new Date(時間変数).Format("yyyy-MM-dd HH:mm :ss")
この記事が皆様の JavaScript プログラミング設計に役立つことを願っています。