1
我有問題從JSON響應檢索int值。這裏是我的代碼:如何檢索從JSON到簡單類型的響應
public ActionResult GetCartCount()
{
int caounofcart = shoppingCartManager.GetCartItemsCount();
return Json(new { name = caounofcart });
}
function updateQuantity() {
// code...
$("#cartbox").text(updatecart); // here is span element
// code...
}
function updatecart() {
$.getJSON("@Url.Action("GetCartCount", "Cart")", function(data) {
var items = [];
$each(data, function (key, val) {
items.push(val);
})
$("#cartbox").text(items[0]);
return items[0];
});
};
我想通過JSON響應更改span
元素文本內容。我怎樣才能做到這一點?
謝謝你,爲你全面和明確的答案。 – cyprian