gpt4 book ai didi

jQuery 与 json

转载 作者:行者123 更新时间:2023-12-01 05:10:05 25 4
gpt4 key购买 nike

我有以下 json 代码文件,名为:sections.json

{
"section1": { "priority": 1, "html": '<img src="../images/google.png" />'},
"section2": { "priority": 2, "html": '<input type="button" value="Login" />'},
"section3": { "priority": 3, "html": '<div>Some text</div>'},
"section4": { "priority": 4, "html": '<div>Some text</div>'},
"section5": { "priority": 5, "html": '<select><option>option1</option> <option>option2</option></select>'}
}

我正在 jquery 代码中尝试此操作,但警报不起作用

$.getJSON("sections.json", function(json) {
alert('h');
});

最佳答案

你的 JSON 应该是这样的:

{
"section1": { "priority": 1, "html": "<img src='../images/google.png' />"},
"section2": { "priority": 2, "html": "<input type='button' value='Login' />"},
"section3": { "priority": 3, "html": "<div>Some text</div>"},
"section4": { "priority": 4, "html": "<div>Some text</div>"},
"section5": { "priority": 5, "html": "<select><option>option1</option> <option>option2</option></select>"}
}

值必须用双引号括起来才能成为有效的 JSON,单引号不行:) 从 jQuery 1.4 开始,默认情况下不再允许无效的 JSON(他们添加了一些额外的检查以确保它是有效的,并且您问题中的 JSON 被这些阻止了:)

关于jQuery 与 json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2498810/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com