我正在寻找JavaScript或jQuery中数字的长度?我尝试value.length没有成功,我是否需要先将其转换为字符串? 最佳答案 var x = 1234567; x.toString().length; 此过程也适用于Float Number和Exponential number。