date = new Date() ; year = date.getYear() ; alert(year);
js中获取年一般使用getYear,但在ie下返回的是2011,在firefox下返回的是111。 解决办法是使用getFullYear();
Δ