使用 jQuery 查找嵌套 DOM 元素

发布于 2024-12-12 10:58:52 字数 684 浏览 0 评论 0原文

我需要使用 JQuery 在 DOM 中查找特定元素。

情况是:

var dialog = $(DOM.loadHTML("amc-refine", "scripts/dialogs/amc-dialog.html"));
elmts = DOM.bind(dialog);

所以 elmts 这里是一个带有 DOM 元素的变量.. 我有一个表,我可以使用 jQuery 访问它,

$(elmts.dialogTable)

我想访问该表内的嵌套元素..例如我想要执行以下操作,

$('#example thead tr').each( function () {
        this.insertBefore( nCloneTh, this.childNodes[0] );
    } );

但我无法使用 # 访问我的表..所以我可以这样做吗:

$(elmts.dialogTable).find('thead').find('tr')

此外,如果我也想

$('#example tbody td img')

使用相同的 $(elmts.dialogTable)

最好的问候

I need to find specific elements in my DOM using JQuery.

The case is:

var dialog = $(DOM.loadHTML("amc-refine", "scripts/dialogs/amc-dialog.html"));
elmts = DOM.bind(dialog);

So elmts here is a variable with the DOM elements ..
i have a table that i can access it using

$(elmts.dialogTable)

using jQuery i would like to reach nested elements inside this table .. for example i want to do the following

$('#example thead tr').each( function () {
        this.insertBefore( nCloneTh, this.childNodes[0] );
    } );

but i cant access my table using the # .. so can i do this:

$(elmts.dialogTable).find('thead').find('tr')

moreover, what if i want to reach also

$('#example tbody td img')

using the same $(elmts.dialogTable)

Best Regards

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

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

发布评论

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

评论(2

爱殇璃 2024-12-19 10:58:52

您应该仍然可以使用 find ,并将整个选择器传递给it:

var img = $(elmts.dialogTable).find('tbody td img');

您不需要像示例中那样多次调用 find 。您的示例可以重写为仅使用 find('thead tr')

或者,您可以使用 elmts.dialogTable 作为要在其中选择的 上下文 :

var img = $("tbody td img", elmts.dialogTable);

You should be able to still use find, and pass the entire selector to it:

var img = $(elmts.dialogTable).find('tbody td img');

You don't need to call find multiple times as you have done in your example. Your example could be rewritten to just use find('thead tr').

Alternatively, you could use elmts.dialogTable as the context in which to select:

var img = $("tbody td img", elmts.dialogTable);
<逆流佳人身旁 2024-12-19 10:58:52

这应该是可能的:

$('#example thead tr', elmts.dialogTable).each( function () {
        this.insertBefore( nCloneTh, this.childNodes[0] );
    } );

第二个参数表示上下文

This should be possible:

$('#example thead tr', elmts.dialogTable).each( function () {
        this.insertBefore( nCloneTh, this.childNodes[0] );
    } );

The second parameter means context.

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