1、创建日期
注:其中月份是从0开始算起,所以要加上1
2、date.getXXX()
3、格式化
4、date.setXXX()
注:超出时间时,浏览器自动转化
5、求天数
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>获取某月的天数</title>
</head>
<body>
<script>
function getDays(year, month){
var date = new Date(year, month, 0);
return date.getDate();
}
alert('2001年2月有' + getDays(2001, 2) + '天。');
alert('2001年3月有' + getDays(2001, 3) + '天。');
</script>
</body>
</html>```
6、Date → Number
![Paste_Image.png](http://upload-images.jianshu.io/upload_images/316258-c8a9ea647ed9fe6a.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
7.Number → Date
![Paste_Image.png](http://upload-images.jianshu.io/upload_images/316258-b0775441c7cc8439.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)