<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>
为什么输出是10月?
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
月份0-11代表1-12月,理所当然9就代表10月份