作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
HTML:
<div id="background_cycler">
<img class="active" src="" alt=""/>
<img src="" alt="" />
<img src="" alt="" />
<img src="" alt=""/>
</div>
jQuery:
var bgImg = [
'img/bg1.jpg',
'img/bg2.jpg',
'img/bg3.jpg',
'img/bg4.jpg'
];
$("#background_cycler").each(function(index){
$(this).find('img').attr("src", bgImg[index]);
});
上面的代码将 bg1.jpg
插入到我所有的图像中,我的错误在哪里?我以为我使用 each()
的索引遍历了 bgImg
数组?
最佳答案
你必须像这样迭代 background_cycler
div 中的所有图像
$("#background_cycler img").each(function(index){
$(this).attr("src", bgImg[index]);
});
您正在使用 background_cycler
id 作为选择器,因此它是从 div 中找到第一张图像,但您需要 background_cycler
div 中的所有图像,因此您需要使用 $ 循环("#background_cycler img").each
如上所述。
关于javascript - 使用每个 jquery 遍历数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28896367/
我是一名优秀的程序员,十分优秀!