尝试在 JavaScript 中执行以下操作:
Try executing the following in JavaScript:
parseInt('01'); //equals 1
parseInt('02'); //equals 2
parseInt('03'); //equals 3
parseInt('04'); //equals 4
parseInt('05'); //equals 5
parseInt('06'); //equals 6
parseInt('07'); //equals 7
parseInt('08'); //equals 0 !!
parseInt('09'); //equals 0 !!
我刚刚了解到,JavaScript 认为前导零表示 八进制整数,并且由于 base-8 中没有 "8"
或 "9"
,因此该函数返回零.不管你喜不喜欢,这是设计使然.
I just learned the hard way that JavaScript thinks the leading zero indicates an octal integer, and since there is no "8"
or "9"
in base-8, the function returns zero. Like it or not, this is by design.
有什么解决方法?
注意:为了完整起见,我将发布一个解决方案,但这是我讨厌的解决方案,所以请发布其他/更好的答案.
更新:
第 5 版 JavaScript 标准(ECMA-262) 引入了消除此行为的重大更改.Mozilla 有一篇很好的文章.
The 5th Edition of the JavaScript standard (ECMA-262) introduces a breaking change that eliminates this behavior. Mozilla has a good write-up.
这是一个常见的 Javascript 问题,解决方案很简单:
This is a common Javascript gotcha with a simple solution:
只需指定基数,或'radix',像这样:
Just specify the base, or 'radix', like so:
parseInt('08',10); // 8
您也可以使用 Number:
Number('08'); // 8
这篇关于如何解决 JavaScript 的 parseInt 八进制行为?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!