gpt4 book ai didi

javascript - jquery ajax 无法循环遍历找到的数据

转载 作者:行者123 更新时间:2023-11-29 18:28:39 26 4
gpt4 key购买 nike

我想遍历一个加载了 ajax 的文件,但它不会循环,我已经尝试了一些方法,但我无法让它工作。

//查询

$.ajax({
url: 'file.html',
type: "GET",
dataType: "html",
success: function(data) {

$(data).find('div').each(function(i){
alert('found')
});

},
error: function(){
alert('oeps...')
}
});

//文件.html

<div>
// content goes here
</div>

<div>
// content goes here
</div>

<div>
// content goes here
</div>

...


...

最佳答案

您需要更改 .find.filter .这是因为 .find搜索所有元素的 children 后代,但由于您的 html 文件只是 <div> s,你需要使用.filter找到他们。

演示:http://jsfiddle.net/zuPVp/

关于javascript - jquery ajax 无法循环遍历找到的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10589703/

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