jQuery before()方法
jQuery的before()方法用于在所选元素之前插入指定内容。它在所匹配元素集合中的每个元素之前添加由参数指定的内容。
before()和insertBefore()这两种方法用于执行相同的任务。它们之间的主要区别在于语法以及内容和目标的放置位置。
语法 :
$(selector).before(content, function(index))
jQuery的before()方法参数
参数 | 描述 |
---|---|
Content | 这是一个必填参数。它指定要插入的内容。可能的取值有: HTML元素 jQuery对象 DOM元素 |
Function (index) | 它指定一个返回用于插入的内容的函数。 Index: 它提供了元素在集合中的索引位置。 |
jQuery的before()方法示例
让我们通过一个示例来演示jQuery的before()方法。
<!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").before("<p><b>Hello javatpoint.com</b></p>");
});
});
</script>
</head>
<body>
<button>Insert content before each p element</button>
<p>This is a tutorial website.</p>
<p>This is a training institute.</p>
</body>
</html>