我有一个通过 javascript 接收下拉变量的 php 函数。变量通过函数处理,函数返回两个结果。我想在页面顶部的 div 'one' 中显示一个结果,而在同一页面底部的 div 'two' 中显示另一个结果。我怎样才能做到这一点?
我正在使用这个 jScript 函数将变量从下拉列表传递到 php 页面
function getRunners() {
var awayRunner = document.getElementById('awayRunner').value;
var homeRunner = document.getElementById('homeRunner').value;
if(window.XMLHttpRequest) {
xmlhttp13 = new XMLHttpRequest();
}
else {
xmlhttp13 = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp13.onreadystatechange = function() {
if(xmlhttp13.readyState == 4 && xmlhttp13.status == 200) {
document.getElementById("one").innerHTML = xmlhttp13.responseText;
}
}
xmlhttp13.open("GET", "/Modules/process.php?awayRunner=" + awayRunner + "&homeRunner=" + homeRunner, true);
xmlhttp13.send();
}
在php页面中,我有这样的东西
function getResults($homeRunner,$awayRunner){
process info...
echo $homeResult;
echo $awayResult;
}
getResults($homeRunner,$awayRunner);
?>
我理解上面的 jScript 代码只返回 div "one"。我如何将 div“二”合并到其中?
先感谢您!