var telephones=data.split(","); //data:联系电话字符串 telephones:根据逗号分割后的电话号码数组 for(i=0;i<telephones.length;i++){ //遍历 依次弹出每一个电话号码 alert(telephones[i]); }