比如<div id="ok"><button tpye=‘button‘>111111</button><p>22222</p><div> <p>31232</p> </div></div>而如果想删除其中的一个应该如何做
以你的程序为例。删除一个父元素下面的所有子元素:document.getElementById("ok").innerHTML = "";删除其中的一个:document.getElementById("ok").remove(document.getElementById("ok").children(i));//删除id为"ok"下的第i-1个子元素
时间: 2024-11-08 02:51:16