对象的方法需要掌握,这是基本语法。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
div{
width: 350px;
height: 350px;
background-color: greenyellow;
margin: 0px auto;
}
</style>
</head>
<body>
<div>
</div>
<script>
const div = document.querySelector("div")
setInterval(function(){
const date = new Date()
div.innerHTML = date.toLocaleString()
},1000)
</script>
</body>
</html>