Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
617 views
in Technique[技术] by (71.8m points)

jquery - How to access JSON in JavaScript

How will I access this data in javascript?

[
    {
        "itemData": [
            {
                "Key": "218",
                "Value": "????????"
            },
            {
                "Key": "219",
                "Value": " ????????"
            },
            {
                "Key": "220",
                "Value": " ??????"
            },
            {
                "Key": "221",
                "Value": " ?????"
            },
            {
                "Key": "222",
                "Value": " ?????"
            },
            {
                "Key": "223",
                "Value": " ?????"
            },
            {
                "Key": "224",
                "Value": " ??????"
            },
            {
                "Key": "225",
                "Value": " ???? ????"
            },
            {
                "Key": "226",
                "Value": " ??"
            },
            {
                "Key": "227",
                "Value": " ????????"
            },
            {
                "Key": "228",
                "Value": " ??????"
            },
            {
                "Key": "229",
                "Value": " ????? ???"
            },
            {
                "Key": "230",
                "Value": " ???"
            },
            {
                "Key": "231",
                "Value": " ????"
            },
            {
                "Key": "232",
                "Value": " ?????"
            },
            {
                "Key": "233",
                "Value": " ??????"
            }
        ]
    }
]

I used AJAX in JSON format. I tried access JSON like:

success: function (data) {
    $.each(data.d[0].itemData, function (index, element) {
        alert( data.d[0].itemData[index].key);
    })
}

but not getting output.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

There is no d property in your JSON, so you can simply access data[0].itemData. Try this:

$.each(data[0].itemData, function (index, element) {
    console.log(element.Key);
})

Example fiddle


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...