1.htm
来自「这是一些关于JavaScript的学习资料 希望对大家有用」· HTM 代码 · 共 58 行
HTM
58 行
<html>
<head>
<title> - 品络科技 pinluo.com</TITLE>
<script>
function tick()
{
var hours, minutes, seconds, xfile;
var intHours, intMinutes, intSeconds;
var today;
today = new Date();
intHours = today.getHours();
intMinutes = today.getMinutes();
intSeconds = today.getSeconds();
if (intHours == 0) {
hours = "12:";
xfile = "午夜";
}
else if (intHours < 12) {
hours = intHours+":";
xfile = "上午";
}
else if (intHours == 12) {
hours = "12:";
xfile = "正午";
}
else {
intHours = intHours - 12
hours = intHours + ":";
xfile = "下午";
}
if (intMinutes < 10)
{
minutes = "0"+intMinutes+":";
}
else
{
minutes = intMinutes+":";
}
if (intSeconds < 10)
{
seconds = "0"+intSeconds+" ";
}
else
{
seconds = intSeconds+" ";
}
timeString = xfile+hours+minutes+seconds;
Clock.innerHTML = timeString;
window.setTimeout("tick();", 100);
}
window.onload = tick;
</script>
</head>
<body>
<div id="Clock" align="center" style="font-size: 20; color:#000000"></div>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?