我很擅长使用Php使用Ajax请求。目前我有两个名为getdata.php的php页面和带有2个Div标签的getdata1.php,名为txtHint和uniHint。
我希望div标签都显示两个php页面的结果。不幸的是,我不确定同时使用两个XMLHTTP请求,请帮助。
if (window.XMLHttpRequest)
{
xmlhttp = new XMLHttpRequest();
} else {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
document.getElementById("txtHint").innerHTML = xmlhttp.responseText;
document.getElementById("uniHint").innerHTML = xmlhttp.responseText;
}
};
xmlhttp.open("GET","getdata.php?q1="+topping,true);
xmlhttp.open("GET","getdata1.php?q1="+topping,true);
xmlhttp.send();