关于Date函数的参数格式求教
如下语句:
var a=new Date(InputValue);
请问InputValue的输入格式如何设定,
我看到可以如下使用:
today = new Date();
birthday = new Date("December 17, 1995 03:24:00");//*1
birthday = new Date(95,11,17); //*2
birthday = new Date(95,11,17,3,24,0) ;
那么我应该如何设定使用*1或*2的格式呢?
在线!!
:)