javascript 本身就是弱类型的语言,通常情况下,不用自己刻意去转。例如:var i = 100;var s = i + "abc";var s1 = i + "";这种都是OK的
var str = 1+"";你可以试一下