获取整数的长度可以用以下几种方法实现:
1.调用toString方法转为字符串后取长度
var
num = 123;
alert(num.toString().length);
2.隐式转字符串后取长度
alert((num +
''
).length)
推荐第1种方法,简单高效