如何使用原生js來刪除節點?
刪除屬性使用 removeAttribute方法。
刪除節點使用 parentnode.removeChild(node)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="text/javascript">
onload=function(){
btn.onclick=function(){
var container = document.querySelector('#container');
var textInput = document.querySelector('#text');
var testBtn = document.querySelector('#test');
testBtn.removeAttribute('onclick');
container.removeChild(textInput);
}
}
</script>
</head>
<body>
<div id="container">
<input type="text" name="text" id="text" value="" />
<input type="button" value="僅作測試" id="test" onclick ="javascript:alert('存在點擊事件Attribute')" />
<input type="button" value="刪除按鈕的onclick及id=text的文本框" id="btn" />
</div>
</body>
</html>