国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

?????? RemoveChild(): ?? ??

removeChild() ???? ?? ??? ?? ??? ???? ? ?????.

??:
parent.removeChild(thisNode)
???? ??:

QQ截圖20161013112729.png

?: delete id= "??" ?? ?? ??? ????:

var thisNode=document.getElementById("demo");
thisNode.parentNode.removeNode(thisNode);

?? ??, ??? ?????:

<div id="demo">
    <div id="thisNode">點擊刪除我</div>
</div>
<script type="text/javascript">
document.getElementById("thisNode").onclick=function(){
    this.parentNode.removeChild(this);
}
</script>

Javascript? ??? ???? ??? ??? ????? ???? ????? ?? ? ? ????.

???? ??
||
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>無標(biāo)題文檔</title> <div id="demo"> <div id="thisNode">點擊刪除我</div> </div> <script type="text/javascript"> document.getElementById("thisNode").onclick=function(){ this.parentNode.removeChild(this); } </script> </head> <body> </body> </html>