我给出的文件名是" counter.php"在" URL" ajax代码该文件位于wordpress根目录但是它给出错误的文件未找到。请检查代码详细信息。我应该如何在wordpress中添加ajax代码并在根目录中添加文件。
网络错误:找不到404 - http://localhost/wordpress/list/counter.php
这是我的AJAX代码
jQuery.ajax({
type: "POST", //by post method
url: "counter.php", // file name
data: { id: ID },
success: function(data){
alert(data);
}
});
答案 0 :(得分:0)
你没有正确提供文件counter.php的路径,你必须在该文件中包含数据库连接..