一般的に、プロジェクトで時間の表示に関する問題が発生します。これに対処する一般的な方法は、フロント デスクで JS を介して制御することです。表示時間を制御するための JS のコードは次のとおりです。さまざまな表示方法があります。
function Clock() {
var date = new Date();
this.year = date.getFull Year();
this.month = date.getMonth() 1;
this.date = date.getDate();
this.day = new Array("日曜日", "月曜日", "火曜日", "水曜日", "木曜日", "金曜日", "土曜日")[date.getDay()];
this.hour = date.getHours() < "0" date.getHours();
this.nutes() <10 ? "date.getMinutes()" .getMinutes ();
this.second = date.getSeconds() < 10 ? "0" date.getSeconds() : date.getSeconds();
this.toString = function() {
return "今は:" this.year "年" this.month "Month" this.date "Day" this.hour ":" this. minutes ":" this.second " " this.day
};// 現在は 現在は: 2013 年 3 月 6 日水曜日 13:54:17