insert After(selector)方法将所有匹配的元素插入到另一个指定的元素集之后。
Insertafter - 语法
selector.insertAfter( selector )
下面是此方法-使用的所有参数的说明
selector - 内容,在该内容之后插入所选元素。
Insertafter - 示例
<html> <head> <title>The jQuery Example</title> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"> </script> <script type="text/javascript" language="javascript"> $(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>
这将产生以下输出-
jQuery 中的 Insertafter方法函数 - 无涯教程网无涯教程网提供insert After(selector)方法将所有匹配的元素插入到另一个指定的元素集之后。 Inserta...https://www.learnfk.com/jquery/dom-insertafter.html