0
我正在使用WordPress &試圖添加一些AJAX。WordPress Ajax調用不起作用
我在[模板]文件/js/ajax.js
function readSearch(){
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
alert(xhttp.status);
if (xhttp.readyState == 4 && xhttp.status == 200) {
document.getElementById("demo").innerHTML = xhttp.responseText;
}
};
xhttp.open("POST", "ajax_info.php", true);
xhttp.send();
}
我到處放ajax_info.php和我仍然獲得了xhttp.status == 404當按鈕點擊
<p class="submit"><input type="submit" name="submit" id="submit"
class="button button-primary" value="Leave it to chance" onclick="readSearch()" /></p>
我有測試顯示在
的文件,我不知道我的思念讓調用工作。
您確定在點擊按鈕時加載了您的JS代碼嗎? –
同樣值得關注的是,在WordPress中處理AJAX請求的admin-ajax.php方法。 – shmuli