php中调用Ajax分值处理问题?
下面是ajax处理过程:
if (xmlHttp.readyState == 4){
if (xmlHttp.status == 200){
var text = xmlHttp.responseText;
text1=?
text2=?
document.getElementById("show1").innerHTML = text1;
document.getElementById("show2").innerHTML = text2;
}else {
alert("response error code:"+xmlHttp.status);
}
}
由于我想要在两个地方接值,所以怎么把var text = xmlHttp.responseText;获取的值分开,
比如获取到的是“内容1;内容2”,show1和show2对应输出值为内容1和内容2。
------解决方案--------------------
var data = xmlHttp.responseText.split(",")