实例
下例演示了after()方法在选定的HTML元素之后插入内容。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>欢迎来到蝴蝶教程</title>
//此版本是百度cdn 1.11.1,当然你可以使用更高的版本,从2.0版本以上的是不支持ie6-8的
<script type="text/javascript" src="http://libs.baidu.com/jquery/1.11.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
$("#btn1").click(function(){
$("img").before("在img前");
});
$("#btn2").click(function(){
$("img").after("在img后");
});
});
</script>
</head>
<body>
<img src="/images/f1.jpg" />
<br/>
<br/>
<button id="btn1">之前插入</button>
<button id="btn2">之前插入</button>
</body>
</html>
尝试一下