jQuery 文档操作 - replaceAll() 方法 概述
jQuery 2022-06-01 15:27:01小码哥的IT人生shichen
jQuery 文档操作 - replaceAll() 方法
实例
用粗体文本替换每个段落:
$(".btn1").click(function(){
$("p").replaceAll("<b>Hello world!</b>");
});
完整实例:
<html>
<head>
<script type="text/javascript" src="https://apps.bdimg.com/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".btn1").click(function(){
$("p").replaceWith("<b>Hello world!</b>");
});
});
</script>
</head>
<body>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button class="btn1">用粗体文本替换所有段落</button>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
replaceAll() 方法用指定的 HTML 内容或元素替换被选元素。
提示:replaceAll() 与 replaceWith() 作用相同。差异在于语法:内容和选择器的位置,以及 replaceWith() 能够使用函数进行替换。
语法
$(content).replaceAll(selector)
参数 | 描述 |
---|---|
content |
必需。规定替换被选元素的内容。 可能的值: 已存在的元素不会被移动,只会被复制,并包裹被选元素。
|
selector | 必需。规定要替换的元素。 |
亲自试一试 - 实例
完整实例【使用新元素来替换元素】:
<html>
<head>
<script type="text/javascript" src="https://apps.bdimg.com/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".btn1").click(function(){
$(document.createElement("div")).replaceAll("p");
});
});
</script>
<style>
div{height:20px;background-color:yellow;margin:10px;}
</style>
</head>
<body>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button class="btn1">用新的 div 替换所有段落</button>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
使用 document.createElement() 来创建一个新的 DOM 元素,然后用它替换被选元素。