sum=sum+parseInt(data[1]);这里为什么是1呢?
split(":")是将字符串按冒号切割,如"小明:87",按冒号切割后得到的是数据data[0]="小明",data[1]=87
哦哦,懂了。谢谢