Blogger Information
Blog 30
fans 2
comment 3
visits 20142
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
jquery的DOM操作——2018年4月9日
jackallen的博客
Original
582 people have browsed it

  一、用法

         * 1.appendTo()

         * 语法: content.appendTo(target)

         * 参数: 要添加或移动到的节点

         * 功能: 插入到目标元素内容的后面

    * 2.prependTo()

         * 语法: content.prepend(target)

         * 参数: 要添加或移动的节点

         * 功能: 插入到目标元素内容的前面

    * 3.insertAfter()

         * 语法: content.after(target)

         * 参数: 要插入的节点

         * 功能: 插入到目标节点的后面

       * 4.InsertBefore()

         * 语法: content.insertBefore(target)

         * 参数: 要插入的节点

         * 功能: 插入到目标元素的前面

   代码:

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>4.将节点添加或移动到目标节点</title>
	<style type="text/css">
		li {
			background-color: lightskyblue;
			width: 300px;
			margin-bottom: 5px;
			list-style:none;
			border-radius:3px;
			height:40px;
		}
	</style>
</head>
<body>
	<ul>
		<li>列表项1</li>
		<li>列表项2</li>
		<li>列表项3</li>
		<li>列表项4</li>
		<li>列表项5</li>
	</ul>
	<button>appendTo()</button>
	<button>prependTo()</button>
	<button>insertAfter()</button>
	<button>insertBefore()</button>
	<!-- 插入到节点内容之后:appendTo() -->
	 <!-- * 参数: 要添加或移动到的节点 -->
	 <!-- * 功能: 插入到目标元素内容的后面 -->
	<p style="background-color: blue;width: 300px;height:40px;border-radius: 3px;">我是要被appendTo()移动的节点1</li>
	<!-- 插入到节点内容之前:prependTo() -->
<!-- 			 * 参数: 要添加或移动的节点
		 * 功能: 插入到目标元素内容的前面 -->
	<p style="background-color: blue;width: 300px;height:40px;border-radius: 3px;">我是要被prependTo()移动的节点2</li>
	<!-- 插入到节点之后: InsertAfter() -->
<!-- 			 * 参数: 要插入的节点
		 * 功能: 插入到目标节点的后面 -->
	<p style="background-color: blue;width: 300px;height:40px;border-radius: 3px;">我是要被insertAfter()移动的节点3</li>
	<!-- 插入到节点之前: InsertBefore() -->
<!-- 			 * 参数: 要插入的节点
		 * 功能: 插入到目标元素的前面 -->
	<p style="background-color: blue;width: 300px;height:40px;border-radius: 3px;">我是要被insertBefore()()移动的节点4</li>
</body>
</html>
<script type="text/javascript" src="../js/jquery-3.3.1.js"></script>
<script type="text/javascript">


	$('button').eq(0).on('click',function(){
		//1. 添加操作
		var li = $('<li>').css('background-color','lightgreen').html('我是appendTo()新生成的节点1')
		li.appendTo($('ul'))

	})

	$('button').eq(1).on('click',function(){

		$('p:eq(1)').prependTo($('ul'))

	})

	$('button').eq(2).on('click',function(){
				//1. 添加操作
		var p = $('<li>').css('background-color','lightgreen').html('我是insertAfter()新生成的节点3')
		p.insertAfter($('ul'))

	})


	$('button').eq(3).on('click',function(){

		/**
		 * 语法: content.insertBefore(target)
		 * 参数: 要插入的节点
		 * 功能: 插入到目标元素的前面
		 */

		//1. 添加操作
		var p = $('<li>').css('background-color','lightgreen').html('我是insertBefore()新生成的节点4')
		$('p:eq(3)').insertBefore($('li:eq(2)'))
	})

</script>

运行实例 »

点击 "运行实例" 按钮查看在线实例


Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post