25 lines
678 B
HTML
25 lines
678 B
HTML
<!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>
|
|
<script>
|
|
// 2021-2-26
|
|
// 9:58:12
|
|
var now=new Date()
|
|
console.log(now)
|
|
console.log(now.getFullYear()) //2021
|
|
console.log(now.getMonth()+1) //2
|
|
console.log(now.getDate())
|
|
console.log(now.getDay()) //星期
|
|
console.log(now.getTime()) //时间戳
|
|
|
|
console.log(now.getHours()+":"+now.getMinutes()+":"+now.getSeconds())
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
</body>
|
|
</html> |