扫码一下
查看教程更方便
toDateString() 方法可把 Date 对象的日期部分转换为字符串,并返回结果。
该方法的语法如下:
Date.toDateString()
无
以人们可以读懂的字符串形式返回 Date 对象的日期部分。
所有主要浏览器都支持 toDateString() 方法
<html>
<head>
<title>JavaScript toDateString Method</title>
</head>
<body>
<script type = "text/javascript">
var dt = new Date(1993, 6, 28, 14, 39, 7);
document.write( "Formated Date : " + dt.toDateString() );
</script>
</body>
</html>
输出结果:
Formated Date : Wed Jul 28 1993