文件路径没有进入ajax" URL"在wordpress。显示404的错误。?

时间:2016-02-05 10:54:05

标签: php jquery ajax wordpress

我给出的文件名是" 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);
    }
});

1 个答案:

答案 0 :(得分:0)

你没有正确提供文件counter.php的路径,你必须在该文件中包含数据库连接..