function timeVal() { var time = new Date() var yy = time.getYear() var mm = time.getMonth() + 1 var dd = time.getDate() var hour = time.getHours() var minute = time.getMinutes() var second = time.getSeconds() var pos_val = " " pos_val += yy + " 년" + mm + "월 " + dd + "일" + " " + ((hour > 12) ? (hour - 12) : hour) pos_val += ((minute < 10) ? ":0" : ":") + minute pos_val += ((second < 10) ? ":0" : ":") + second pos_val += (hour >= 12) ? " PM" : " AM" return pos_val;} //싸이고유넘버 8자리 //게시판글 속성 //게시판글 속성 //게시판글 속성 첨부파일 : visitor.html
방문자
function timeVal() {
var time = new Date()
var yy = time.getYear()
var mm = time.getMonth() + 1
var dd = time.getDate()
var hour = time.getHours()
var minute = time.getMinutes()
var second = time.getSeconds()
var pos_val = " "
pos_val += yy + " 년" + mm + "월 " + dd + "일" + " " + ((hour > 12) ? (hour - 12) : hour)
pos_val += ((minute < 10) ? ":0" : ":") + minute
pos_val += ((second < 10) ? ":0" : ":") + second
pos_val += (hour >= 12) ? " PM" : " AM"
return pos_val;
}
//싸이고유넘버 8자리
//게시판글 속성
//게시판글 속성
//게시판글 속성
첨부파일 : visitor.html