gpt4 book ai didi

jquery - jquery 代码中“this”的含义

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

我很抱歉问这个问题,但是这段代码中的“this”是什么意思?

(它是在 jQuery 中)。

var icon = $('.icon', this);

最佳答案

我的理解是它会做类似的事情:

$(this).find('.icon');

也就是说,它将找到“this”的所有子级与选择器匹配。例如,它可以用作:

$('.list').each(function () { 
$('.icon', this).hide();
});

相当于:

$('.list .icon').hide();

关于jquery - jquery 代码中“this”的含义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4482263/

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