本文介绍了如何在jquery中附加分离的元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

朋友您好,

只需浏览以下代码



Hello friends,
Just go through the following code

<html>
    <head>
        <script src="../Script/jquery-1.7.1.min.js"></script>
    </head>
    <body>
        <div>
            <ul class="menu">
                <li>A</li>
                <li>B</li>
                <li class="detach">C</li>
                <li>D</li>
                <li class="attach">E</li>
            </ul>
            <button>Detach</button>
            <button class="btnAttach">Attach</button>
        </div>
        <script>
            $(document).ready(function(){
                $("button").click(function(){
                    $holder = $(".detach").detach();
                    });
                $(".btnAttach").click(function(){
                    alert($holder);
                    $(".menu").children().last().after($holder);
                    });
                });
        </script>
    </body>
</html>





我正在尝试的是



What I'm trying is

1. I'm detaching element C<br />
2. I'm attaching C after element E





分离正在发生正确,但附着不起作用



你能告诉我哪里出错吗?



在此先感谢



Detach is happening properly, but attach is not working

Can you tell where I'm going wrong??

Thanks in advance

推荐答案




这篇关于如何在jquery中附加分离的元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 21:36