收到「後」 variabe我送這是我的javascript:我的PHP無法通過AJAX
function fetchprov(proptype) {
var reqdata = "condo="+proptype;
hanapin=new XMLHttpRequest();
hanapin.open('POST', 'testajax.php', true);
hanapin.setRequestHeader("Content-type", "application/x-www-form-urlencoded")
hanapin.send(reqdata);
hanapin.onreadystatechange = function() {
if (hanapin.readyState == 4 && hanapin.Status == 200) {
document.getElementById('province').innerHTML=hanapin.ResponseText
}
}
window.alert(targeturl);
window.alert(reqdata);
}
我所知道的功能是接收數據,因爲我使用的警報。
但在PHP:
<?php
$findwat = $_POST['condo'];
echo $findwat;
?>
甚至當我使用一個單獨的鏈接打開PHP文件也不會回聲可變
使'$ _POST' – Shubanker
一個的var_dump「當我使用單獨的鏈接打開php文件,它不會回顯變量「你如何用http post打開頁面? – atmd
像這樣var_dump($ _ POST);? –