如何在 jQuery 中使用 jQuery.insertAfter() 方法?
insertAfter( selector ) 方法将所有匹配的元素插入到另外指定的一组元素后。
以下是此方法使用的所有参数的说明 −
- selector − 所选元素插入后的内容。
示例
您可以尝试运行以下代码以了解如何在 jQuery 中使用 jQuery.insertAfter() 方法 −
<html> <head> <title>jQuery insertAfter() method</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function() { $("div").click(function () { $("#source").insertAfter(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" id = "source"></div> <div class = "div" style = "background-color:blue;"></div> <div class = "div" style = "background-color:green;"></div> <div class = "div" style = "background-color:red;"></div> </body> </html>
广告