如何在 jQuery 中使用元素前附加一个元素?


要追加一个元素在另一个元素之前,使用 insertBefore() 方法。insertBefore( selector) 方法将所有匹配的元素插入在另一些指定的元素之前。

示例

现场演示

<html>

   <head>
      <title>The jQuery Example</title>
      <script src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
       
      <script>
         $(document).ready(function() {
            $("div").click(function () {
               $("#source").insertBefore(this);
            });
         });
      </script>
       
      <style>
         .div {
             margin:10px;
             padding:12px;
             border:2px solid #666;
             width:60px;
         }
      </style>
   </head>
   
   <body>
   
      <p>Click on any square below to see the result:</p>
       
      <div class = "div" style = "background-color:blue;"></div>
      <div class = "div" style = "background-color:green;"></div>
      <div class = "div" style = "background-color:red;"></div>
      <div class = "div" id = "source"></div>
       
   </body>
</html>

更新时间:2020-02-17

3K+ 人查看

开启你的 职业生涯

通过完成课程获得证书

开始
广告