jquery中的replaceWith()和html()有什么区别?

2024-11-23 11:18:17
推荐回答(1个)
回答1:

区别在于,html()会替换指定元素内部的HTML,而replaceWith()会替换元素本身及其内部的HTML。


例子:


// 

Text


$('#myid').html('

Text

');

// 

Text


$('#myid').replaceWith('

Text

');


望采纳!

相关问答