gpt4 book ai didi

jquery - jQuery ajax 方法出错并且页面刷新

转载 作者:行者123 更新时间:2023-12-01 01:01:51 24 4
gpt4 key购买 nike

    $('.cn').click(function() {
var pic_id = $(this).attr('href');
console.log(pic_id);
//alert(pic_id);

$.ajax({
type: "POST",
url: "<?php echo base_url();?>anda/coins",
async: false,
data: "pic_id="+pic_id,
dataType: 'json',
success: function(data){
//alert(data);
$('.cn_point').html(data.id);
}
});

});

我得到了回调值并显示,但页面刷新并且跨度隐藏值。有人可以帮助我吗?我找不到我的错误。

最佳答案

尝试使用preventDefault:

$('.cn').click(function (e) {
e.preventDefault();
var pic_id = $(this).attr('href');
console.log(pic_id);
//alert(pic_id);

$.ajax({
type : "POST",
url : "<?php echo base_url();?>anda/coins",
async : false,
data : "pic_id=" + pic_id,
dataType : 'json',
success : function (data) {
//alert(data);
$('.cn_point').html(data.id);
}
});

});

关于jquery - jQuery ajax 方法出错并且页面刷新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15307989/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com