嗨,我对 Web 开发真的很陌生。我想知道如何在 php 中访问 ajax 返回值。当我从下拉列表中选择一个选项时,我会使用 ajax 获得另一个下拉列表。但我想使用 php 使用页面上的值。
Practice Name :
<select name="practiceName" id="practiceName" onchange="showAssociate(this.value)">
<option value="">Select an option</option>
<option value="abc">abc</option>
<option value="xyz">xyz</option>
</select>
<p>
<div id="associate">
</div>
ajax代码是:
function showAssociate(str)
{
if (str=="")
{
document.getElementById("associate").innerHTML="";
return;
}
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("associate").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","getAssociate.php?q="+str,true);
xmlhttp.send();
}
ajax 在 div 'associate' 中返回所需的下拉框和值,但是在提交表单时如何在 php 中使用这些值?我只需要在屏幕上的某个地方访问并回显它。请帮忙。提前致谢。