This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// JavaScript Document | |
function RunGLNL() { | |
var today = new Date(); | |
var d = new Array("星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"); | |
var DDDD = today.getFullYear() + "年" + [today.getMonth() + 1] + "月" + today.getDate() + "日"; | |
intHours = today.getHours(); | |
intMinutes = today.getMinutes(); | |
intSeconds = today.getSeconds(); | |
if (intHours == 0) { | |
hours = "12:"; |