gpt4 book ai didi

javascript - jQuery $.getJSON() 不返回任何东西

转载 作者:行者123 更新时间:2023-11-28 04:58:29 24 4
gpt4 key购买 nike

我有一个脚本,自从我刚开始学习以来,我就用它来试验一下 jQuery。

脚本应该读取 .json 文件并在 div 中显示一些数据。

function jQuerytest()
{
$.getJSON( "books/testbook/pageIndex.json", function(result) {
$.each(result, function(i, field) {
$("div").append("<p>" + field + "</p>");
});
});
}

这是html

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<link href="styles/main.css" rel="stylesheet" type="text/css">
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="scripts/book.js"></script>
<script>jQuerytest();</script>
</head>

<body>
<div></div>
<figure id=fig><img onClick="jQuerytest()" src="figures/test620x620.png"/>
</figure>
</body>
</html>

但它不显示任何内容。

最佳答案

如果您的 JSON 文件有效(您可以在这里测试:http://jsonlint.com/)使用成功和错误回调最终获取无法正常工作的信息。

function jQuerytest(){
$
.getJSON( "books/testbook/pageIndex.json")
.success(function(result) {
$.each(result, function(i, field) {
$("div")
.append("<p>" + field + "</p>");
});
})
.error(function(error){
console.log(error);
});
}

关于javascript - jQuery $.getJSON() 不返回任何东西,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19052353/

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