1
這是ajax發佈請求的示例。當它放置在wordpress活動主題目錄之外時它工作。然而,當它在那裏,並且norefresh.php也被上傳時,無論norefresh.php使用什麼確切的補丁(site/themefolder/norefresh.php或服務器補丁或本地補丁norefresh.php或/ norefresh),它都不起作用。 PHP)。根本不起作用。Ajax發佈請求在wp主題目錄中不起作用
有什麼關於WordPress的,可以防止執行,我該怎麼辦?
$.ajax({
type: "POST",
url: "norefresh.php",
data: reqdata,
cache: false,
success: function(html) {
//document.getElementById('myTextarea').value = html;
alert(html);
}
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>