将元素的子元素添加到 jQuery 集合而不离开链

发布于 2024-11-06 07:01:05 字数 361 浏览 0 评论 0原文

是否有可能在不离开链的情况下将 jQuery 集合中元素的子元素添加到集合中?

即,离开它看起来像这样:

var set = $('.some-elements');
set.add('*', set);
// or immediate ones only
set.add(set.children());

我正在寻找一种方法来执行这些操作而不创建临时set变量:(

$('.some-elements').jqMagic("*");

当然,人们可以写一个我只是想确定一下,jQuery 核心中没有这个功能。)

Is there a possibility to add the children of elements in a jQuery set to the set without leaving the chain?

I.e., with leaving it would look like this:

var set = $('.some-elements');
set.add('*', set);
// or immediate ones only
set.add(set.children());

I'm looking for a way to do any of these without creating the interim set variable:

$('.some-elements').jqMagic("*");

(Of course one could write a "jqMagic" plugin for this. I just want to be sure, there isn't this functionality in jQuery core.)

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

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

发布评论

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

评论(1

污味仙女 2024-11-13 07:01:05

我相信 AndSelf 会让您做您所要求的事情。

用示例更新:

给定以下 html:

<div id="1" class="testdiv">
   <a href="#">test a</a>
   <a href="#">test b</a>
</div>


<div id="2" class="testdiv">
    <a href="#">test c</a>
    <a href="#">test d</a>
</div>

此代码仅为子级(在本例中为锚标记)提供红色边框:

<script language="javascript" type="text/javascript">

    $('.testdiv').children().css('border','solid 1px red');

</script>

而此代码(使用 andSelf())在元素列表中包含父级 div因此选择父 div 和子 div - 从而根据您的要求给出合并集:

<script language="javascript" type="text/javascript">

    $('.testdiv').children().andSelf().css('border','solid 1px red');

</script>

I believe AndSelf will let you do what you're asking.

update with example:

Given the following html:

<div id="1" class="testdiv">
   <a href="#">test a</a>
   <a href="#">test b</a>
</div>


<div id="2" class="testdiv">
    <a href="#">test c</a>
    <a href="#">test d</a>
</div>

This code gives just the children (anchor tags in this case) a red border:

<script language="javascript" type="text/javascript">

    $('.testdiv').children().css('border','solid 1px red');

</script>

while this code (using andSelf()) includes the parent divs in the element list and therefore selects both the parent divs and the child divs - thus giving a merged set as you requested:

<script language="javascript" type="text/javascript">

    $('.testdiv').children().andSelf().css('border','solid 1px red');

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