jQuery学习--jQuery 元素替换

jQuery replaceAll() 方法

把最后一个 <p> 元素替换为 <span> 元素:

$("button").click(function(){
$("<span>Hello world!</span>").replaceAll("p:last");
});

replaceAll() 方法吧被选元素替换为新的 HTML 元素。


jQuery replaceWith() 方法

把第一个 <p> 元素替换为新的文本:

$("button").click(function(){
$("p:first").replaceWith("Hello world!");
});

replaceWith() 方法把被选元素替换为新的内容。






你可能感兴趣的:(jQuery学习--jQuery 元素替换)