学习JSON。 Dreamweaver 说第 2 行有错误。无法找到它

Learning JSON. Dreamweaver says there is an error in line 2. Cannot find it

我正在尝试在 JSON 中列出一个列表。我正在使用我在互联网上找到的教程,它似乎有语法错误。我以前没有使用 JSON 的经验,我无法弄清楚为什么这段代码会显示错误。特别是第 2 行。

{
"quizlist":[


    {
    "question":"Portuguese is spoken in _______",
    "option1":"Brazil",
    "option2":"Argentina",
    "option3":"Ecuador"
    },
    {
    "question":"What is the capital of Peru?",
    "option1":"Lima",
    "option2":"Bogota",
    "option3":"San Juan"
    },
    {
    "question":"Which country is long and thin?",
    "option1":"Chile",
    "option2":"Uruguay",
    "option3":"Colombia"
    }

]}

我正在使用 Dreamweaver CS6,因为我正在尝试为网站创建它。

谢谢。

JSON没问题。我有一种直觉,你正在尝试使用这个 JSON,因为它在 html.You 中需要将 JSON 保存为 javascript 对象。试试这个:

var myJSON = {
"quizlist":[


{
"question":"Portuguese is spoken in _______",
"option1":"Brazil",
"option2":"Argentina",
"option3":"Ecuador"
},
{
"question":"What is the capital of Peru?",
"option1":"Lima",
"option2":"Bogota",
"option3":"San Juan"
},
{
"question":"Which country is long and thin?",
"option1":"Chile",
"option2":"Uruguay",
"option3":"Colombia"
}

]};

然后你可以在任何你想使用 JSON 数据的地方使用这个 Javascript 对象 myJSON

希望对您有所帮助.. :)