Blogger Information
Blog 34
fans 0
comment 1
visits 24226
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
【4.8】PHP作业 - appendTo(),prependTo(),insertAfter(),insertBefore()
51靓号网-专注QQ靓号十年精品
Original
472 people have browsed it

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style type="text/css">
		li {
			list-style: none;
			width: 50px;
			height: 50px;
			background-color: lightgreen;
			border: 1px solid #888;
			border-radius: 50%;
			margin: 10px;

			text-align: center;
			line-height: 50px;
		}

		p {
			list-style: none;
			width: 50px;
			height: 50px;
			background-color: lightblue;
			border: 1px solid #888;
			border-radius: 50%;
			margin: 10px;

			text-align: center;
			line-height: 50px;
		}
	</style>
</head>
<body>
	<ul>
		<li>1</li>
		<li>2</li>
		<li>3</li>
		<li>4</li>
		<li>5</li>
	</ul>
	<button>append</button>
	<button>prepend</button>
	<button>After</button>
	<button>Before</button>
	<p>5</p>
	<p>6</p>
	<p>7</p>
	<p>8</p>
</body>
<script type="text/javascript" src="js/jquery-3.3.1.js"></script>
<script type="text/javascript">
	$('button').eq(0).on('click',function(){

	 	/**
		 * 1.appendTo()
		 * 语法: content.appendTo(target)
		 * 参数: 要添加或移动到的节点
		 * 功能: 插入到目标元素内容的后面
		 */
		
		//1. 添加操作
		//第一步: 生成节点元素,添加内容,并设置样式
		var li = $('<li>').css('background-color','lightgreen').html('5')
		//第二点: 将新节点插入到目标节点内容的后面
		li.appendTo($('ul'))

		//2.移动操作(请将添加操作的代码注释掉)
		// $('p:first').appendTo($('ul'))		
	})
</script>
</html>

运行实例 »

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



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