解析parseInt()和toLocaleString Internet Explorer返回的值时的NaN

时间:2014-10-09 18:15:44

标签: javascript internet-explorer

alert(parseInt(new Date().toLocaleString('es', {month:'numeric'})));

此代码始终返回' NaN'在IE上

为什么会这样?

我怎样才能使用vanilla javascript解决。

1 个答案:

答案 0 :(得分:3)

var date = new Date();
var month = date.getMonth() + 1; //Months are zero based

这应该对你有所帮助。