Blogger Information
Blog 39
fans 0
comment 0
visits 34771
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
添加或移动内容 4月8日 作业
美丽城堡
Original
669 people have browsed it

1、appendTo() 在元素内容后添加或移动元素

2、prependTo() 在元素内容前添加或移动元素

3、insertAfter() 在元素后添加或移动元素

4、insertBefore() 在元素前添加或移动元素

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>jquery 中的方法</title>
	<style>
		body{
			margin: 0;
			padding: 0;
		}
		.wrap{
			width: 1200px;
			margin: auto;
		}
		.header,.footer{
			height: 88px;
			font-size: 28px;
			line-height: 88px;
			text-align: center;
		}
		.header{
			box-shadow: 0 2px 12px 0 #abcdef;
		}
		.footer{
			margin-top: 30px;
			background:lightskyblue;
		}
		.box{
			padding: 10px 200px;
			margin-top: 30px;
			background: #abcdef;
		}
		p{
			background: wheat;
		}

	</style>
</head>
<body>
	<div class="header">jquery  中的方法</div>

	<!-- 1、appendTo() -->
	<div class="article">
		<div class="wrap">
			<div class="box one">
				<p>内容一</p>
			</div>
			<div class="box two">
				<p>内容二</p>
			</div>
			<div class="box three">
				<p>内容三</p>
			</div>
			<div class="box four">
				<p>内容四</p>
			</div>

		</div>
	</div>
	<div class="footer">End..</div>

	<script src="js/jquery-3.2.1.js"></script>
	<script>
		$(function(){
			var link1 = $('<a href="http://www.php.cn">').text("PHP 中文网")
			var link2 =$('<a href="http://www.php.cn">').text("PHP 中文网")
			var link3 =$('<a href="http://www.php.cn">').text("PHP 中文网")
			var link4 =$('<a href="http://www.php.cn">').text("PHP 中文网")

			link1.appendTo($('.one p'))
			link2.prependTo($('.two p'))
			link3.insertAfter($('.three p'))
			link4.insertBefore($('.four p'))
		})
	</script>

</body>
</html>

运行实例 »

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

运行图片:

a.png

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