gpt4 book ai didi

Jquery - 选择随机 JSON 对象

转载 作者:行者123 更新时间:2023-12-01 07:02:33 26 4
gpt4 key购买 nike

我有这个 jquery 代码来在页面加载时输出 JSON 文件中的条目...

$.getJSON('b.json', function(data) {
$('#dictionary').empty().hide();



$.each(data, function(entryIndex, entry) {
var html = '<div class="entry">';
html += '<h3 class="title">' + entry['title'] + '</h3>';
html += '<div class="link_url">' + entry['link_url'] + '</div>';
html += '<div class="image_src">';
html += entry['image_src'];
if (entry['quote']) {
html += '<div class="quote">';
$.each(entry['quote'], function(lineIndex, line) {
html += '<div class="quote-line">' + line + '</div>';
});
if (entry['author']) {
html += '<div class="quote-author">' + entry['author'] + '</div>';
}
html += '</div>';
}
html += '</div>';
html += '</div>';

$('#dictionary').append(html).fadeIn();
});
});

我需要做的是随机加载这些条目之一。

任何建议表示赞赏。

非常感谢,

JSON 文件是...

[
{
"title": "WESITE NAME",
"link_url": "http://www.website.com",
"image_src": "http://www.website.com/images/recent.jpg",
},
{
"title": "WESITE NAME",
"link_url": "http://www.website.com",
"image_src": "http://www.website.com/images/recent.jpg",
},
{
"title": "WESITE NAME",
"link_url": "http://www.website.com",
"image_src": "http://www.website.com/images/recent.jpg",
}
]

最佳答案

$.getJSON('b.json', function(data) { 
var entry = data[Math.floor(Math.random()*data.length)];
//do the same exact thing with entry
}

关于Jquery - 选择随机 JSON 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1812218/

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