国庆节倒计时应当如何做?
作者:互联网
<!DOCTYPE html>
<html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head><body>
<button id="buy">购买</button>
<script>
// get 获取 set设置
var date = new Date(); //系统时间
// 1.设置年 setFullYear()
date.setFullYear(2028);
// 2.设置月 setMonth() 0-11
date.setMonth(7) //8月份
// 3.设置日期 setDate()
date.setDate(18)
// 4设置小时 setHours()
date.setHours(10)
// 5.设置分钟
date.setMinutes(45)
// 6 设置秒 setSeconds()
date.setSeconds(56)
// 7 设置毫秒setMilliseconds 0-999
date.setMilliseconds(666) console.log(date) // 8 整个日期对象转为 本地时间格式 date.toLocaleString()
document.write(date.toLocaleString() + "<br/>")
// 9 将日期部分 转为本地时间格式 date.toLocaleDateString() 2028/8/18
document.write(date.toLocaleDateString() + "<br/>")
// 10.将时间部分转为本地格式字符串 date.toLocaleTimeString()
document.write(date.toLocaleTimeString() + "<br/>")
document.write(date.toLocaleTimeString().substr(2) + "<br/>")
//11 date.toUTCString() 将时间 转为UTC 时间 世界协调时 差 8小时
document.write(date.toUTCString() + "<br/>")
// 12. 转为格林威治时间的字符串
document.write(date.toGMTString())
//
var buy = document.getElementById("buy");
buy.onclick = function() {
// new Date().getTime() 获取时间戳
console.log(new Date().getTime())
}
</script>
</body></html>
标签:write,toLocaleTimeString,应当,倒计时,国庆节,设置,date,document,转为 来源: https://blog.csdn.net/weixin_59519449/article/details/119374909