gpt4 book ai didi

javascript - 从外部源加载特定数据

转载 作者:行者123 更新时间:2023-11-28 06:54:15 25 4
gpt4 key购买 nike

给定脚本在单击时从外部源的特定 div 加载数据。它从外部源的 div 加载所有数据。但现在尝试只加载我想要的特定内容。就像仅加载图像,然后仅加载标题、发布标签、日期和评论,而不加载文本摘要,顺序相同。

脚本:

$(function() {
var page = null;
var counter = 0;

function getNext() {
// Grab the next element from the array of date-outer divs and copy it to the .content div
if (counter >= page.length)
return;
var elm = $(page[counter]).clone();
elm.find('script').remove(); // Remove script tags in the div
elm.appendTo('#load-here');
counter++;
}

$('button.btn').click(function(e) {
if (page === null) {
page = false; // Prevents the request from being made twice
$.get('http://test-html-site.blogspot.com/search/label/', function(data) {
page = $(data).find('.date-outer');
getNext();
});
} else if (page !== false) {
getNext();
}
});
});

HTML:

<button class='btn'/>
<div id="load-here"></div> <!-- Load Here -->

</body>

外部站点的 HTML 结构:
给定脚本每次点击加载.date-outer

<body>
<div class="blog-posts hfeed">

<div class="date-outer">
Contecnt 1: Title, img, comments, text </div>

<div class="date-outer">
Contecnt 2: Title, img, comments, text </div>

<div class="date-outer">
Contecnt 3: Title, img, comments, text </div>

</div>
</body>

外部站点示例 link
单例Content structure .

我的问题是如何以相同的顺序仅加载特定数据,例如图像,然后是标题、帖子标签、日期和评论,而不是文本摘要。

最佳答案

尝试使用此代码片段从外部源选择特定内容

$('#Destination-image1-Id').load('XXX.html #image1');

引用号:https://stackoverflow.com/a/4101874/2632619

关于javascript - 从外部源加载特定数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32695770/

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