标签:
1 var s = "123";
2 console.log(s.charAt(0)*100+s.charAt(1)*10+s.charAt(2)*1);
js 字符串“123”,变成整数123,不用parseInt 函数
原文地址:http://www.cnblogs.com/angle-happy/p/5926715.html