标签: javascript html5
我有两个文本框,我想转换字符串值,例如" apple"和" cat"使用javascript将其转换为适当的整数值。
答案 0 :(得分:2)
简单......
var myInt = "cat"; var converted = parseInt(myInt, 10); console.log(converted); >>NaN