gpt4 book ai didi

javascript - JS/jQuery : how would I iterate through each image in my HTML?

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

我是编程新手。我目前正在尝试使用 jqueryrotate 插件来尝试随机旋转我的 HTML div .holder 中的所有图像以获得分散的图片外观。

我知道应该在数组上使用 $.each 函数...但我想不出任何其他方法来遍历我的图像。有什么建议吗?

$.each($('.holder img'), function(i, value){
value.rotate(Math.random() * -90 + Math.random() * 90);
});

最佳答案

当你传递一个对象数组时,你可以使用 this 访问当前对象,但它不是一个 jQuery 对象,所以你应该使用 $(this) 来链接.rotate.

$.each($('.holder img'), function(){
$(this).rotate(Math.random() * -90 + Math.random() * 90);
});

引用

关于javascript - JS/jQuery : how would I iterate through each image in my HTML?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12189231/

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