jQuery after()方法
jQuery after()方法用于在选定元素之后插入指定内容。它就像jQuery append()方法一样。
如果您想在选定元素之前插入内容,应该使用jQuery before()方法。
语法 :
$(selector).after(content,function(index))
jQuery的after()方法参数
参数 | 描述 |
---|---|
Content | 这是一个必需参数。它指定要插入的内容。 其可能的值包括:HTML元素、jQuery对象 、DOM元素 |
Function (index) | 它指定一个函数,该函数返回用于插入的内容。 index :它提供了集合中元素的索引位置。 |
jQuery的after()方法示例
看看jQuery after()方法的一个示例:
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
(document).ready(function(){("button").click(function(){
$("p").after("<p><b>Hello javatpoint.com</b></p>");
});
});
</script>
</head>
<body>
<button>Insert content after each p element</button>
<p>This is a tutorial website.</p>
<p>This is a training institute.</p>
</body>
</html>