我有一个 jquery,它通过 ajax 从页面中提取文本并在 div 中显示该文本我想将该数据传递给 php 变量我该怎么做?
我的jQuery代码是
<script type="text/javascript">
var xmlHttp = null;
window.onload = function() {
xmlHttp = new XMLHttpRequest();
xmlHttp.open("GET", "abc.php", true);
xmlHttp.onreadystatechange = onCallback;
xmlHttp.setRequestHeader('Content-type','application/x-www-form-urlencoded');
xmlHttp.send(null);
}
function onCallback() {
if (xmlHttp.readyState == 4) {
if (xmlHttp.status == 200) {
alert(xmlHttp.responseText);
document.getElementById('show').innerHTML=xmlHttp.responseText;
}
}
}
</script>
在这里,我想将 xmlhttp.responseTexrt 保存在同一文件中的 php 变量中,我该怎么做?