如何在名称中使用分号访问JSON对象键

时间:2013-07-10 07:56:15

标签: javascript json

我需要一些关于如何使用Javascript "yweather:forecast"访问JSON对象的密钥的指导。我试过了json.yweather:forecast,但它引发了一个错误。

{
    "yweather:forecast" : [
        {
            "@day":"Wed",
            "@date":"10 Jul 2013",
            "@low":"75"      
        }
    ]
}

1 个答案:

答案 0 :(得分:2)

在JavaScript中:

jsonobject["yweather:forecast"]