如何解析以下字符串?

时间:2011-08-18 05:26:50

标签: javascript jquery

  

可能重复:
  How to parseInt a string with leading 0
  Workarounds for JavaScript parseInt octal bug

如何将“09”解析为数字?

       警报(parseInt函数( “09”));

这会让我0 ..为什么这样,我该如何解决这个问题?

1 个答案:

答案 0 :(得分:4)

同时指定 base

alert(parseInt("09", 10));  // outputs 9