Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.4k views
in Technique[技术] by (71.8m points)

new Data()设置时间快了一个月?

<html>
<head>
<meta charset="UTF-8">
<title>以本地格式显示日期/时间</title>
</head>
<body>
<script language="javascript">
    d = new Date(2005,9,27,5,20,30);
    document.write(d.toLocaleString());
</script>
</body>
</html>

clipboard.png

为什么输出是10月?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

月份0-11代表1-12月,理所当然9就代表10月份


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...