jQuery replaceAll() 方法 jQuery removeProp() 方法 jQuery replaceWith() 方法 jQuery replaceAll() 方法 实例 把最后一个 <p> 元素替换为 <span> 元素: $("button").click(function(){ $("<span>Hello world!</span>").replaceAll("p:last"); }); 试一试 定义和用法 replaceAll() 方法把被选元素替换为新的 HTML 元素。 语法 $( _content_ ).replaceAll( _selector_ ) 参数 描述 _content_ 必需。规定要插入的内容(必须包含 HTML 标签)。 _selector_ 必需。规定哪一个元素将被替换。 jQuery removeProp() 方法 jQuery replaceWith() 方法