作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想遍历一个加载了 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
找到他们。
关于javascript - jquery ajax 无法循环遍历找到的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10589703/
我是一名优秀的程序员,十分优秀!