是否有相对 jQuery 选择器之类的东西?

发布于 2024-09-15 22:43:28 字数 337 浏览 4 评论 0原文

我有一个带有 this 变量的 jquery 对象的引用。我正在寻找一种将子选择器应用于对象的方法。

我正在使用 $(this).find('table > tbody > tr > td'),但我的目标更像是 $('[ $(this) 的值在这里] > tbody > td')

我意识到我可以做 $(this).children('table').children('tbody').children('tr').children('td'),但我想知道如果有一些语法糖我可以在这里使用。

I have a reference to a jquery object with the this variable. I am looking for a way of applying the child selector to the object.

I'm using $(this).find('table > tbody > tr > td'), but what I'm aiming for is something more like $('[Value of $(this) goes here somehow] > table > tbody > tr > td').

I realise that I can do $(this).children('table').children('tbody').children('tr').children('td'), but I was wondering if there was some syntactic sugar I could use here.

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

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

发布评论

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

评论(3

铁憨憨 2024-09-22 22:43:28

使用时,您可以从 子选择器 (>) 开始.find() 也是如此:

$(this).find('> table > tbody > tr > td')

这是一个经常被忽视的用法情况,但它非常适合您所追求的。

You can start with a child selector (>) when using .find() as well, like this:

$(this).find('> table > tbody > tr > td')

It's an often overlooked use case, but it works just great for what you're after.

孤者何惧 2024-09-22 22:43:28

正如 Nick 所说,您可以使用 find(),也可以使用 选择器上下文

$('> table > tbody > tr > td', this)

// Is the equivalent of
$(this).find('> table > tbody > tr > td')

As Nick said, you can use find(), or you can use selector context:

$('> table > tbody > tr > td', this)

// Is the equivalent of
$(this).find('> table > tbody > tr > td')
旧时光的容颜 2024-09-22 22:43:28

另一种方法是传递第二个参数 $('selector', context),它定义搜索的上下文。

默认情况下,选择器在 DOM 中执行搜索
在文档根目录下。然而,可以给出替代上下文
通过使用 $() 函数的可选第二个参数进行搜索。

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

An alternative way would be passing a second parameter $('selector', context), which defines a context for search.

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.

$( "div.foo" ).click(function() {
    $( "span", this ).addClass( "bar" );
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文