我知道有一个解决方案,Jquery称为unwrap,但我正在编写“原始”JavaScript.
没有jQuery我没有找到任何解决方案.
没有jQuery我没有找到任何解决方案.
我想删除这样的div:
<div><div id="mydiv">Important text here</div></div>
删除“mydiv”后:
<div>Important text here</div>
我该怎么办,我想知道这个理论.
提前致谢.
解决方法
不应该这条线工作
document.getElementById("mydiv").outerHTML = document.getElementById("mydiv").innerHTML
见JSBin Example(检查元素)