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