📄 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 + -