如何从jquery中的json获取key的特定值

时间:2016-05-04 09:01:05

标签: jquery json arraylist

我有以下代码,

 $(document).ready(function () {
        var totalPrice = "";
        var jsonList = '@Html.Raw(Json.Encode(ViewBag.price))'
        var jList = JSON.parse(jsonList);

        $("#C_Adults, #C_Children").on('change', function () {
            var adultcount = $("#C_Adults").val();
            var childcount = $("#C_Children").val();
            alert(adultcount);
            alert(childcount);

           //get the needed value here
        });

        alert("js is working");
    });

此处显示的结果为jsonListjList,如下图所示 enter image description here

我想要的是在点击按钮内单独获取adultpricechildprice

注意:每次jList计数为1

希望你对此有所帮助。谢谢你。

1 个答案:

答案 0 :(得分:1)

你jList是一个对象数组。因此,您可以获得如下值:

Offset  Order Time                  Order Time UTC
------  -----------------------     -----------------------
+0200   2016-05-03 10:08:22.000     2016-05-03 08:08:22.000
+0300   2016-05-03 10:08:22.000     2016-05-03 07:08:22.000
-0200   2016-05-03 13:11:26.000     2016-05-03 15:11:26.000 -- Note: - 2 hours
+0200   2016-05-03 11:07:27.000     2016-05-03 09:07:27.000
+0200   2016-05-03 14:22:35.000     2016-05-03 12:22:35.000
-0325   2016-05-03 16:31:36.000     2016-05-03 19:56:36.000 -- Note: - 3 hours and 25 minutes