jQuery replaceAll() 方法

jQuery HTML/CSS 方法

replaceAll()方法将选定的元素替换为新的HTML元素。

replaceAll()方法类似于replaceWith(),但是content selector相反。

语法:

$(content).replaceAll(selector)

示例

将所有段落替换为<h1>元素:

$("button").click(function(){
  $("<h1>新标题</h1>").replaceAll("p");
});
测试看看‹/›

参数值

参数描述
content指定要插入的内容(必须包含HTML标记)
selector指定要替换的元素

jQuery HTML/CSS 方法