本教程操作环境:windows7系统、jquery1.10.2版本、Dell G3电脑。
在 jQuery 中,如果想要替换节点元素,我们用 replaceWith() 方法和 replaceAll() 方法来实现。
方法1:使用replaceWith()
在 jQuery 中,我们可以使用 replaceWith() 方法来将所选元素替换成其他元素。
语法:
$(A).replaceWith(B)
表示用 B 来替换 A。注:A和B都要是包含HTML标签的内容
示例:
<script src="js/jquery-1.10.2.min.js"></script><script>$(function() {$("button").click(function() {$("p").replaceWith("Hello world!")})})</script>这是一个段落。
这是另一个段落。
方法2:使用replaceAll()
在 jQuery 中,replaceAll() 和 replaceWith() 这两个方法功能虽然相似,都是将某个元素替换成其他元素,但是两者的操作对象是颠倒的。
语法
$(A).replaceAll(B)
表示用 A 来替换 B。
示例:
<script src="js/jquery-1.10.2.min.js"></script><script>$(function() {$("button").click(function() {$("Hello world!").replaceAll("p");})})</script>这是一个段落。
这是另一个段落。
【推荐学习:jQuery视频教程、web前端视频】
以上就是jquery怎么替换节点的详细内容,更多请关注php中文网其它相关文章!