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