New Date Syntax date, js 前两天笔试时,多选 Date 的语法,我经常用的有 1 2 new Date(1999,10,10); new Date("1999-10-10"); 其它的不敢多选,回来查看了 https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date ,基本语法有: 1 2 3 4 new Date(); new Date(value); new Date(dateString); new Date(year, month, day [, hour, minute, second, millisecond]); 好吧,这个dateString很恼人啊,幸好链接了 http://tools.ietf.org/html/rfc2822#page-14 。 下面形象地列出些dateString实例: 1 2 3 4 5 6 new Date("1999-10-10"); new Date("1999/10/10"); new Date("Oct* 10, 1999"); new Date("October 10, 1999"); new Date("1999-Oct-10"); new Date("1999/Oct/10"); #Date #js