我在使用 jQuery EasyUI 时如何在跨度内写入数据
How I write data in span when i am using jQuery EasyUI
我正在使用 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);
我正在使用 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);