现在我想在JS中使用RegExp来替换整个特定的html标签(例如,'< strong>')及其全部内容(innerHTML)。
一个例子: 替换
<strong><u>hello</u></strong>
与
<u>hello</u>
答案 0 :(得分:0)
我试过这个; document.querySelector(&#39; tagParent&#39)。的replaceChild(document.createTextNode(documen t.querySelector(&#39;强&#39;。)的innerHTML),document.querySelector(&#39;强&#39 ;)); 还有更好的办法吗?
答案 1 :(得分:0)