帮我写一个实时日期,时间电子时钟的网页代码白色字体
时间: 2023-05-13 19:07:44 浏览: 201
以下是一个简单的实时日期、时间电子时钟的网页代码,白色字体:
```html
<!DOCTYPE html>
<html>
<head>
<title>实时日期、时间电子时钟</title>
<style>
body {
background-color: black;
color: white;
font-size: 50px;
text-align: center;
margin-top: 20%;
}
</style>
</head>
<body>
<script>
function updateTime() {
var now = new Date();
var date = now.toLocaleDateString();
var time = now.toLocaleTimeString();
document.body.innerHTML = date + "<br>" + time;
}
setInterval(updateTime, 1000);
</script>
</body>
</html>
```
这段代码使用 JavaScript 中的 `Date` 对象来获取当前日期和时间,并使用 `setInterval` 函数每秒钟更新一次页面内容。页面背景色为黑色,字体为白色,字体大小为 50px,居中显示。
阅读全文