gpt4 book ai didi

javascript - 更改jquery中函数的选择器

转载 作者:行者123 更新时间:2023-11-28 15:36:15 25 4
gpt4 key购买 nike

我需要一些帮助。看看你能不能帮我。我有一个函数,其形式为:

$this.find(settings.selector).each(function(index) {

无论如何,根据变量可以更改选择器,如下所示:

$this.each(function(index) {

你能给我一些建议吗?我希望我已经大致解释过了。谢谢。

最佳答案

您可以使用临时变量,例如

var $els;
if (some_condition) {
$els = $this.find(settings.selector)
} else {
$els = $this;
}
$els.each(function (index) {});

关于javascript - 更改jquery中函数的选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25501854/

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