集册 jQuery 参考教程 jQuery replaceAll() 方法

jQuery replaceAll() 方法

Xebcnor     最近更新时间:2019-10-11 06:01:19

285

jQuery replaceAll() 方法

jQuery HTML/CSS 方法 jQuery HTML/CSS 方法

实例

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

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

运行实例

定义和用法

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

语法

$(content).replaceAll(selector)

展开阅读全文