html dom 中removeChild(node)

用途:通过父节点来删除指定的子节点

 

<html>

<head>
<script type="text/javascript">
function getNodeValue()
{
//alert("11111111");
var nv=document.getElementById("td1");
var nn=nv.parentNode.removeChild(nv);
//var nv1=document.getElementById("tr1").firstChild.nodeValue;
//alert("nv="+nv);
//alert("nn="+nn);
//alert("nv1="+nv1);
}
</script>

</head>

<body>
<table>
  <tr id="tr1">
    <td id="td1" value="123">John</td>
    <td>Doe</td>
    <td>Alaska</td>
  </tr>
</table>
<input type="button" value="button1"  onclick="getNodeValue()"/>
</body>

</html>

 

你可能感兴趣的:(html,button)