Jquery 获取 this 或 $(this) 内的所有...

发布于 2024-09-25 20:22:03 字数 210 浏览 5 评论 0原文

例如,我怎样才能获得所有准备好的选定 jquery 元素内的所有链接(这个)

$("#container li").each(function(){
   $("this a").each(function(){
      // links inside this li element
   });
});

这不起作用还有其他方法吗?

how can i get for example all links inside a all ready selected jquery element (this)

$("#container li").each(function(){
   $("this a").each(function(){
      // links inside this li element
   });
});

This does not work is there a other way?

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

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

发布评论

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

评论(2

随波逐流 2024-10-02 20:22:03

您可以使用 .find() 函数:

$('#container li').each(function() {
    $(this).find('a').each(function() {
        // links inside this li element
    });
});

或避免嵌套循环您可以直接选择链接,然后根据需要获取父 li

$('#container li a').each(function() {
    var parentLi = $(this).parent('li');
});

You could use the .find() function:

$('#container li').each(function() {
    $(this).find('a').each(function() {
        // links inside this li element
    });
});

or to avoid nested loops you could directly select the links and then fetch the parent li if needed:

$('#container li a').each(function() {
    var parentLi = $(this).parent('li');
});
惟欲睡 2024-10-02 20:22:03

作为 Darin 提议的替代方案,jQuery 允许您为选择器定义上下文节点。

所以,你可以这样做:

var
  $listItems = $('#container li'),
  // use $listItems as context
  $anchors = $('a', $listItems);

Alternatively to Darin's proposal, jQuery allows you to define a context node for a selector.

So, you could do this:

var
  $listItems = $('#container li'),
  // use $listItems as context
  $anchors = $('a', $listItems);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文