jQuery replaceWith() 方法 jQuery replaceAll() 方法 jQuery scrollLeft() 方法 jQuery replaceWith() 方法 实例 把第一个 <p> 元素替换为新的文本: $("button").click(function(){ $("p:first").replaceWith("Hello world!"); }); 试一试 定义和用法 replaceWith() 方法把被选元素替换为新的内容。 语法 $( _selector_ ).replaceWith( _content,_ function( _index_ )) 参数 描述 _content_ 必需。规定要插入的内容(可包含 HTML 标签)。 可能的值: * HTML 元素 * jQuery 对象 * DOM 元素 function( _index_ ) 可选。规定返回替换内容的函数。 * _index_ \- 返回集合中元素的 index 位置。 更多实例 使用函数替换内容 如何使用函数替换把被选元素替换为新的内容。 jQuery replaceAll() 方法 jQuery scrollLeft() 方法