用的getMonth(),但是获得是1,今天已经2月了啊
因为在js里获取月份的数值是0~11,0表示一月,可以这样写
var date=new Date(); var yue=date.getMonth(); document.write(yue+1+'月');