$(selector).after(content,function(index))
参数 | 说明 |
content | 这是必填参数。它指定要插入的内容。其可能的值为: HTML元素 jQuery对象 DOM元素 |
function(index) | 它指定一个函数,该函数返回用于插入的内容。 索引:它提供元素在集合中的索引位置。 |
<!DOCTYPE html>
<html>
<head>
<script src="/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("p").after("<p><b>Hello bianchenghao6.com</b></p>");
});
});
</script>
</head>
<body>
<button>在每个p元素之后插入内容</button>
<p>这是一个教程网站。</p>
<p>这是一个培训机构。</p>
</body>
</html>
这是一个教程网站。
这是一个培训机构。