解决方法
@ nickf的正确。但是,要更精确一点:
// if you try to print it,it will return something like: // Sat Mar 21 2009 20:13:07 GMT-0400 (Eastern Daylight Time) // This time comes from the user's machine. var myDate = new Date();
所以,如果你想显示为mm / dd / yyyy,你会这样做:
var displayDate = (myDate.getMonth()+1) + '/' + (myDate.getDate()) + '/' + myDate.getFullYear();
查看Date对象的full reference。不幸的是,它打印出来的各种格式,因为它是与其他服务器端语言差不多好。因为这个原因there–are–many–functions在野外可用。