<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>dayjs使用</title>
<script src="https://cdn.bootcdn.net/ajax/libs/dayjs/1.4.1/dayjs.min.js"></script>
</head>
<body>
<script>
window.onload = function(){
console.log(dayjs()); //获得包含当前日期和时间的对象
//dayjs().year() 获取当前年份
//dayjs().date() 获取当前日期
//dayjs().day() 获取当前星期*,从星期天 0 开始
//dayjs().month() 获取月份。从 0 开始
//dayjs().format('YYYY-MM-DD') 格式化示例
}
</script>
</body>
</html>