일반적으로 프로젝트에서 시간을 표시하는 문제가 발생합니다. 이를 처리하는 일반적인 방법은 프론트 데스크에서 JS를 통해 제어하는 것입니다. JS가 표시 시간을 제어하는 코드는 다음과 같습니다.
function Clock() {
var date = new Date();
this.year = date.getFullYear();
this.month = date.getMonth() 1;
this.date = date.getDate();
this.day = new Array("일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일")[date.getDay()];
this.hour = date.getHours() < 10 ? "0" date.getHours() : date.getHours();
this. Minute = date.getMinutes() < 10 ? "0" date.getMinutes() : 날짜 .getMinutes ();
this.second = date.getSeconds() < 10 ? "0" date.getSeconds() : date.getSeconds();
this.toString = function() {
return "지금은:" this.year "연도" this.month "월" this.date "일" this.hour ":" this. Minute ":" this.second " " this.day;//지금은 현재는 2013년 3월 6일 수요일 13:54:17