我試圖使用AJAX將值傳遞給PHP代碼。使用AJAX將值從JavaScript傳遞到PHP
的Javascript
function countop() {
var href = window.location.href;
var href2 = href.split('/', 7);
xmlhttp.open('GET', '/count.php?val_for_count='+href2[6], true);
xmlhttp.send();
};
PHP
$x = $_GET['val_for_count'];
echo $x;
我不明白$x
印刷,我不知道爲什麼。
在發送href2 [6]作爲查詢字符串參數之前,請驗證值console.log(href2 [6]); –
我只需要發送 –
它是否返回了正確的字符串? –