我有这个字符串
24.733835, 121.34365500000001:AP-54184
我想将字符串拆分为':' ,但为什么不能溢出字符串
var newarray= '24.733835, 121.34365500000001:AP-54184'.spilt(/:/);
document.write(newarray[0]+","+newarray[1]+"<br>");
我的代码有什么问题吗?
答案 0 :(得分:6)
没有函数spilt()
,除非它是Milk
类的一部分。你想要split(':')
答案 1 :(得分:0)
您的代码中有拼写错误,应该是.split()
,而不是.spilt()
...