使用 jQuery 查找嵌套 DOM 元素
我需要使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该仍然可以使用
find
,并将整个选择器传递给it:您不需要像示例中那样多次调用
find
。您的示例可以重写为仅使用find('thead tr')
。或者,您可以使用
elmts.dialogTable
作为要在其中选择的 上下文 :You should be able to still use
find
, and pass the entire selector to it:You don't need to call
find
multiple times as you have done in your example. Your example could be rewritten to just usefind('thead tr')
.Alternatively, you could use
elmts.dialogTable
as the context in which to select:这应该是可能的:
第二个参数表示
上下文
。This should be possible:
The second parameter means
context
.