?? hktime.js
字號:
//
////////////////////////////////////////////////////
// 廣州市 CK 聯合網絡小組 //
// //
// WEB: www.hk666b.com www.pnqk.com //
// //
// QQ: 66622488 //
////////////////////////////////////////////////////
//
//
function funClock() {
if (!document.all) return;
var runTime = new Date();
var sDate=window.document.getElementById("Time0").value;
runTime.setTime(Date.parse(sDate));
var newTime=new Date();
var msCount=runTime.getTime()+1000;
newTime.setTime(msCount);
//alert(runTime);
//alert(newTime);
window.document.getElementById("Time0").value=newTime.toString();
var yy = runTime.getYear();
var mm = runTime.getMonth()+1;
var dd = runTime.getDate();
var hours = runTime.getHours();
var minutes = runTime.getMinutes();
var seconds = runTime.getSeconds();
if (minutes <= 9)minutes = "0" + minutes;
if (seconds <= 9)seconds = "0" + seconds;
movingtime = yy+"-"+mm+"-"+dd+" "+ hours + ":" + minutes + ":" + seconds;
clock.innerHTML = movingtime;
setTimeout("funClock()", 999)
}
window.onload = funClock;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -