js 里面怎么把字符串转换成数字

2024-11-02 15:41:51
推荐回答(2个)
回答1:

var inum=parseInt(str); //转换成整型
var fnum=parseFloat(str); //转换成浮点型

回答2:

字符串前加上 +
或者用Number()函数