dsfg3241 2014-12-30 19:35
浏览 39
已采纳

jQuery $ .ajax成功但serv没有收到任何数据

I work on a pagination system that wouldn't reload the whole page but just refresh the contents. I retrieve the requested page with the value contained in a ID and want to send it to the server for the process.

The success is reached but my php script does not recognize the $_POST['page'] value. Here is the JS:

    $(document).ready(function()
{
    $('#containerWrapper').on('click', '.holder a', function (event) {

        var page = $(this).attr('id');
        var url = "cart.php";
        event.preventDefault();

        // Launch of the Ajax query to refresh the current page
        $.ajax({
            url: "cart.php",
            type: "POST",
            data: {page: page},
            success: function()
            {
                alert('Success, delivered page: ' + page);
                $('#containerWrapper').load(url + " #containerWrapper");
            }
        }); 
    });
});        

Here the PHP, which i think isn't the real problem:

if (isset($_POST['page']) && ($_POST['page'])>0 && ($_POST['page'])<= $nbPages)
    {
        $cPage = htmlspecialchars($_POST['page']);
    }    

I've ready many topics but haven't found any relative problem for the now.

  • 写回答

1条回答 默认 最新

  • duanlong4890 2014-12-30 19:44
    关注

    You really have too much code, it is not necessary for your purposes to bury a load() statement in an AJAX call. You could simply do this -

    $(document).ready(function(){
        $('#containerWrapper').on('click', '.holder a', function (event) {
            event.preventDefault();
            var url = "cart.php";
            var page = $(this).attr('id');
            $('#containerWrapper').load(url + " #containerWrapper", {page: page});
        }); 
    });
    

    load() does allow you to send data to the requested page via a second arguement.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效