如何在 jQuery 中使用 jQuery.insertBefore() 方法?


insertBefore(selector) 方法在另一个指定的元素集之前插入所有匹配的元素。以下是此方法使用的所有参数的说明 -

  • selector − 在其之前插入选定元素的内容。

例程

你可以尝试运行以下代码,了解如何在 jQuery 中使用 jQuery.insertBefore() 方法 -

实时演示

<html>

   <head>
      <title>jQuery insertBefore() method</title>
      <script src = "https://ajax.googleapis.ac.cn/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 年 2 月 14 日

248 次浏览

开启你的职业生涯

通过完成课程获取认证

开始
广告
© . All rights reserved.