toDateString 方法用于将 Date 对象的日期部分转换为字符串,并返回该字符串。语法如下:
date_obj.toDateString()
<script language="JavaScript"> var d = new Date(); document.write( d.toDateString() ); </script>
运行该例子,输出:
Sun Mar 4 2012
如果需要将日期按照一定的格式输出,请参考《JavaScript Date getDate 方法:取得月份中的某天》一文中的例子2。