gpt4 book ai didi

jquery - 在 Jquery 选择器中附加变量

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

我有这个选择器

self = $('.trim .person:nth-child('+index+')');
self.append('<img src="'+element.profilePic+'" class="profilePic" />');

然后我想使用它在

中选择一个类
  $(self + '.spacer').css('opacity', 0.5);

我也尝试过

self + $('.spacer').css('opacity', 0.5);

最佳答案

将其设置为context parameter in jQuery .

$('.spacer', self).css('opacity', 0.5);
<小时/>

或者使用find()方法获取当前 jQuery 对象中的元素。

self.find('.spacer').css('opacity', 0.5);

关于jquery - 在 Jquery 选择器中附加变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42974708/

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