如何将上一个元素添加到当前jQuery选择中?
要将上一个元素添加到当前jQuery选择中,请使用insertBefore()
方法。
示例
您可以尝试运行以下代码来学习如何使用insertBefore()
方法:
<!DOCTYPE html><html>
<head>
<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("<span>Demo text</span>").insertBefore("p");
});
});
</script>
</head>
<body>
<button>Insert</button>
<br>
<p>This is a paragraph.</p>
</body>
</html>
以上是 如何将上一个元素添加到当前jQuery选择中? 的全部内容, 来源链接: utcz.com/z/335157.html