区别在于,html()会替换指定元素内部的HTML,而replaceWith()会替换元素本身及其内部的HTML。
例子:
// Text$('#myid').html('Text');// Text$('#myid').replaceWith('Text');
Text
望采纳!