通过ajax返回php数据,将ajax数据发布到PHP并返回数据

$.ajax({

type: "POST",

data: {data:the_id},

url: "http://localhost/test/index.php/data/count_votes",

success: function(data){

//data will contain the vote count echoed by the controller i.e.

"yourVoteCount"

//then append the result where ever you want like

$("span#votes_number").html(data); //data will be containing the vote count which you have echoed from the controller

}

});

在控制器中

$data = $_POST['data']; //$data will contain the_id

//do some processing

echo "yourVoteCount";

澄清

我觉得你很困惑

{data:the_id}

success:function(data){

为了您自己的清晰度,两个数据都是不同的,您可以将其修改为

success:function(vote_count){

$(span#someId).html(vote_count);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值