gpt4 book ai didi

jquery - 以相反的顺序访问同一类的元素

转载 作者:行者123 更新时间:2023-12-01 07:07:15 24 4
gpt4 key购买 nike

我有几个类名为.paying-amount的元素。使用 jquery 我需要以相反的顺序访问它们

当我按以下方式使用.each()

$('.paying-amount').each(function () { $(this).html("hello"); })

我执行从 0...n 开始的函数。但我想从 n ... 0 开始。

.paying-amount 元素保存在数组中可以解决这个问题,因为我可以反向访问该数组,但不知何故无法管理它。

请帮忙。

最佳答案

这在过去是作为 jQuery 的功能请求提交的,并且不会实现。您的问题已在comments here中得到解答。 .

你可以这样做:

//get a plain array of elements then call reverse on that
$(something).get().reverse();

或者你可以扩展 jQuery:

$.fn.reverse = Array.prototype.reverse

然后您将能够在元素上调用reverse()

$('.paying-amount').reverse().each(function () { $(this).html("hello"); });

关于jquery - 以相反的顺序访问同一类的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38498126/

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