目录

JS error : split is not a function

JS报错

如图

问题所在

split 只能是字符串才能执行,其他类型参数需要转换类型,否则报错

解决

转换为str类型

1
2
var a = 123
(a+"").split("")

解决了