我正在使用AJAX从服务器进行数据通信,但是如果成功,我想将数据写入span(id=cartcount),但是它不起作用,请帮助我实现这一概念

function addToCart(pid, name) {
            if (confirm("Are you sure to add "+name + " to cart?")) {
                $.ajax({
                    type: 'POST',
                    url:  'addcart',
                    data: {
                        pid: pid
                    },
                    success: function(obj) {
                      $('#cartcount').val(obj);
                    }
                });
            }
        }

最佳答案

尝试:

   $('#cartcount').html(obj);


要么

$('#cartcount').text(obj);

10-05 17:47