类型转换2017-06-19 本文已影响0人 leomei91 字符串转化为数字 parseInt(str) 字符串转化为浮点型 parseFloat(str) 数字转化为字符串 var i = 12; s = i.toString() "12"