var date=new Date(2012,10,1);
document.write(date);
你用这个输出一下就知道了,document.write(date.getMonth());
month的值是从0到11,Date(2012,10,1);就是2012年11月1日了。