利用js的date函数可以获取当前电脑时间,并可以分不同的时间种类获取单个时间值
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Date日期操作</title>
</head>
<body>
<script>
let time = new Date();
document.write(time+'<br>')
Year = time.getFullYear()//年
Month = time.getMonth()+1//月0代表1月
Day = time.getDate()//日
Hours = time.getHours()//时
Minutes = time.getMinutes()//分
Seconds = time.getSeconds()//秒
document.write('现在的时间是'+ Year+'年'+Month+'月'+Day+'日 '+Hours+':'+Minutes+':'+Seconds)
</script>
</body>
</html>