0

视图.php

$(document).ready(function() { 
    $('.buttons > a').livequery("click",function(e){
        var parent  = $(this).parent();
        var getID   =  parent.attr('id').replace('button_','');
        var url = '<?php echo site_url('cart/price');?>';
        $.post(url+"?id="+getID, {}, function(response){
            $('#button_'+getID).html($(response).fadeIn('slow'));
        });
    }); 
});

<span class="buttons" id="button_5"><a class="btn-following" href="javascript: void(0)"></a></span>

控制器:

$gid = $this->input->post('id', TRUE);
$this->Product_model->following($gid);

模型:

function following($gid){       
    mysql_query("INSERT INTO tf_followers (following_id) VALUES('".$gid."')");        
}

从这里我得到空值到数据库,这是通过 jQuery 传递值的正确方法。

4

1 回答 1

1

如果您想正确地将数据传递给$.post,请使用其 3 参数重载:

$.post(url, {id: getID}, function(response){
    $('#button_'+getID).html($(response).fadeIn('slow'));
});

如果你想用 GET 传递它(就像你一样),你不能在服务器上的 POST 变量集合中得到它。

于 2013-01-29T05:47:43.270 回答