在网页添加时间(时钟方法)
Posted 陈伟华
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在网页添加时间(时钟方法)相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>当前时间是:xx年xx月xx日 星期xx xx:xx:xx</h1>
<script>
var h1 = document.querySelector(\'h1\');
var weekStr = \'日一二三四五六\';
fn(); // 一打开就执行
setInterval(fn, 1000); // 接着一秒钟以后再执行
function fn() {
var d = new Date(); // 当前时间
var year = d.getFullYear(); // 年
var month = d.getMonth() + 1; // 月 0--11
var day = d.getDate(); // 日
var week = d.getDay(); // 星期 0--6
var h = d.getHours(); // 时
var m = d.getMinutes(); // 分
var s = d.getSeconds(); // 秒
h1.innerText = \'当前时间是:\' + year + \'年\' + month + \'月\' + day + \'日 星期\' + weekStr[week] + \' \' + toTwo(h) + \':\' + toTwo(m) + \':\' + toTwo(s);
}
// console.log(toTwo(15));
// console.log(toTwo(5));
function toTwo(n) {
if (n < 10) {
return \'0\' + n;
} else {
return \'\' + n;
}
}
</script>
</body>
</html>
以上是关于在网页添加时间(时钟方法)的主要内容,如果未能解决你的问题,请参考以下文章