首页 前端知识 无涯教程-jQuery - Insertafter方法函数

无涯教程-jQuery - Insertafter方法函数

2024-08-16 22:08:58 前端知识 前端哥 401 806 我要收藏

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

转载请注明出处或者链接地址:https://www.qianduange.cn//article/15906.html
标签
评论
发布的文章

XML与JSON的使用

2024-08-23 21:08:27

npm i 常见问题

2024-08-23 20:08:23

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!