jQuery $(this) 语法问题

发布于 2024-10-16 12:48:02 字数 90 浏览 1 评论 0原文

这是一个有效的选择器吗?如果不是,正确的方法是什么?

$($(this)+' childElement')....

Is this a valid selector? If not, what's the correct way?

$($(this)+' childElement')....

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

心碎的声音 2024-10-23 12:48:02

这可能就是您正在寻找的内容:

$('childElement', $(this))

基本上,它将在当前元素 this 的上下文中搜索 childElement


有关更多信息,请参阅 jQuery() 函数的文档。特别是,以下摘录解释了第二个参数以及它如何等效于使用 find

默认情况下,选择器在 DOM 中从文档根开始执行搜索。但是,可以通过使用 $() 函数的可选第二个参数来为搜索提供替代上下文。例如,如果在回调函数中我们希望搜索某个元素,我们可以限制该搜索:

$('div.foo').click(function() {
  $('span', this).addClass('bar');
});

由于我们已将跨度选择器限制为其上下文,因此只有单击的元素内的跨度才会获得附加类。

在内部,选择器上下文是通过 .find() 方法实现的,因此 $('span', this) 相当于 $(this).find('span').

This may be what you are looking for:

$('childElement', $(this))

Basically it will search for childElement within the context of the current element, this.


For more information, see the documentation for the jQuery() function. In particular, the following excerpt explains the second argument and how it is equivalent to using find:

By default, selectors perform their searches within the DOM starting at the document root. However, an alternate context can be given for the search by using the optional second parameter to the $() function. For example, if within a callback function we wish to do a search for an element, we can restrict that search:

$('div.foo').click(function() {
  $('span', this).addClass('bar');
});

Since we've restricted the span selector to the context of this, only spans within the clicked element will get the additional class.

Internally, selector context is implemented with the .find() method, so $('span', this) is equivalent to $(this).find('span').

撩发小公举 2024-10-23 12:48:02

使用

 $(this).find("childrenSelector")

Use

 $(this).find("childrenSelector")
一个人的夜不怕黑 2024-10-23 12:48:02
$(this).find('childrenSelector');
$(this).find('childrenSelector');
百合的盛世恋 2024-10-23 12:48:02

或者...

$(this).children('.element');

Or...

$(this).children('.element');

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文