使用时
test = new Date()
,
做console.log ('test')
我得
"Thu Sep 12 2013 17:55:25 GMT+0545 (NPT)"
。我只需要"Thu Sep 12 2013"
。
在执行这些(new Date()).getDay()
时,它对我不起作用。
帮帮我们。
谢谢你的推荐!
答案 0 :(得分:2)
怎么样:
test = new Date()
console.log(test.toDateString())
来自:http://devdocs.io/javascript/global_objects/date/todatestring