如何在javascript中将String变量转换为int?

时间:2012-08-20 15:38:41

标签: javascript string int type-conversion numeric

将String变量的值转换为int / numeric变量的正确方法是什么?为什么bcInt仍为字符串,为什么isNaN会返回true

bc=localStorage.getItem('bc');
var bcInt=parseInt(bc,10);
var bcInt2=1;
console.log("bc------------>" +bc +" isNaN:" +isNaN(bc)); //isNaN returns true
console.log("bcInt------------>" +bcInt +" isNaN:" +isNaN(bcInt)); //isNaN returns true

bcInt2// isNaN returns false

2 个答案:

答案 0 :(得分:8)

parseInt仅在您将数字作为第一个字符传递时返回一个数字。

示例:

parseInt( 'a', 10 ); // NaN
parseInt( 'a10', 10 ); // NaN
parseInt( '10a', 10 ); // 10
parseInt( '', 10 ); // NaN
parseInt( '10', 10 ); // 10

此外,如果您想获得仅为数字的字符串,您可以查看+运算符。

+'a'; // NaN
+'a10'; // NaN
+'10a'; // NaN
+''; // 0, that's tricky
+'10'; // 10

编辑:根据您的评论,我测试了parseInt

parseInt( '08-20 19:41:02.880', 10 ); // 8

你做错了什么。 parseInt返回所有内容,直到它不是数字。如果第一个不是数字(或者找不到任何数字),则返回NaN

答案 1 :(得分:0)

答案是我使用了localStorage.setItem('bc',JSON.stringify(bc))并且它为bc添加了双引号,因为在这种情况下它已经是一个字符串,这就是为什么parseInt无效的原因。值为""1""