动态填充列表 (jQuery)

发布于 2024-08-20 02:34:20 字数 260 浏览 5 评论 0原文

<ul>
  <li>item x</li>
  <li>item y</li>
  <li>item z</li>
</ul>
<a href="#">Populate</a>

我想在单击“填充”链接时复制(复制并附加)所有

  • 。我该怎么做?
  • 谢谢

    <ul>
      <li>item x</li>
      <li>item y</li>
      <li>item z</li>
    </ul>
    <a href="#">Populate</a>
    

    I want to duplicate (copy and append) all <li>s when clicked on the 'populate' link. How do I do it?

    Thanks

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

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

    发布评论

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

    评论(4

    又爬满兰若 2024-08-27 02:34:20

    快速简洁的版本。

    $('a').click(function() {
        $('ul').children().clone().appendTo('ul');
    })
    

    当然,您可能需要使用类或 id 来定义“a”和“ul”,以便更加具体。

    编辑:

    为了扩展上面给出的免责声明,这将是一个有点脆弱的解决方案,因为它将影响所有“a”和“ul”元素。这可能不是您想要的。

    更好的形式是为您的 html 元素提供类或 id,然后将事件附加到这些元素上。

    示例:

    $('#myPopulateAnchorElement').click(function() {
     $('#myExpandableUL').children().clone().appendTo('#myExpandableUL');
    });
    
    <ul id='myExpandableUL'>
      <li>item x</li>
      <li>item y</li>
      <li>item z</li>
    </ul>
    <a href="#" id='myPopulateAnchorElement'>Populate</a>
    

    感谢 Ed Woodcock 建议纳入先发制人的解决方案。

    Quick and concise version.

    $('a').click(function() {
        $('ul').children().clone().appendTo('ul');
    })
    

    Of course, you may want to define your 'a' and 'ul' with a class or id in order to be more specific.

    EDIT:

    To expand on the disclaimer given above, this will be a somewhat fragile solution as it will affect all 'a' and 'ul' elements. This may likely not be what you desire.

    Better form is to give your html elements classes or ids, and then attach events to those.

    Example:

    $('#myPopulateAnchorElement').click(function() {
     $('#myExpandableUL').children().clone().appendTo('#myExpandableUL');
    });
    
    <ul id='myExpandableUL'>
      <li>item x</li>
      <li>item y</li>
      <li>item z</li>
    </ul>
    <a href="#" id='myPopulateAnchorElement'>Populate</a>
    

    With thanks to Ed Woodcock for suggesting the inclusion of a preemptive solution.

    埋情葬爱 2024-08-27 02:34:20

    试试这个:
    <代码>

    $(function(){
       $('.anchorClass').click(function(){
            var ul = $('.ulClass');
            ul.append(ul.html());
       });
    });

    编辑:

    您需要将 html 更改为:
    <代码>

      <ul class="ulClass">
      <li>item x</li>
      <li>item y</li>
      <li>item z</li>
    </ul>
    <a class="anchorClass" href="#">Populate</a>

    try this:

    $(function(){
       $('.anchorClass').click(function(){
            var ul = $('.ulClass');
            ul.append(ul.html());
       });
    });

    EDIT:

    You'll need to change your html to:

      <ul class="ulClass">
      <li>item x</li>
      <li>item y</li>
      <li>item z</li>
    </ul>
    <a class="anchorClass" href="#">Populate</a>

    牵你的手,一向走下去 2024-08-27 02:34:20
    var ul = $('ul');
    
    $('a').click(function(){
        ul.children().clone(true).appendTo(ul);
    });
    
    var ul = $('ul');
    
    $('a').click(function(){
        ul.children().clone(true).appendTo(ul);
    });
    
    雪若未夕 2024-08-27 02:34:20

    你可以这样做:

    $('a').click(function(){
       $('li').each(function(){
          $(this).clone().appendTo('your selector where to put the copy');
       })
    })
    

    You can do something like this:

    $('a').click(function(){
       $('li').each(function(){
          $(this).clone().appendTo('your selector where to put the copy');
       })
    })
    
    ~没有更多了~
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文