parentNode屬性用於將指定節點的父節點作為Node對象返回。這是一個隻讀屬性。
用法:
node.parentNode
返回值:此屬性返回指定節點的父元素;如果當前節點沒有父元素,則返回null。
例:
<!DOCTYPE html>
<html>
<head>
<title>
DOM parentNode Property
</title>
</head>
<body onload="start ()" style="text-align:center">
<h1 style="color:green">
GeeksforGeeks
</h1>
<h2>
DOM parentNode Property
</h2>
<button onclick="geek ()">Click me!</button>
<br>
<br>
<div id="container">
</div>
<script>
var Text = null;
// function to call on body load
function start() {
// creating a span element
Text = document.createElement("span");
Text.style.color = "green";
Text.innerHTML = "GeeksforGeeks";
}
// check function
function geek() {
var container =
document.getElementById("container");
// checking if parent node of Text
// matches with that of var container
if (Text.parentNode === container) {
container.removeChild(Text);
} else {
container.appendChild(Text);
}
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
再次單擊按鈕以隱藏文本。
支持的瀏覽器:parentNode屬性支持的瀏覽器如下:
- 穀歌瀏覽器1.0
- IE瀏覽器
- Firefox 1.0
- Opera
- 蘋果瀏覽器
相關用法
- HTML Map name用法及代碼示例
- HTML DOM name用法及代碼示例
- HTML DOM specified用法及代碼示例
- HTML li value用法及代碼示例
- HTML DOM value用法及代碼示例
- HTML DOM URL用法及代碼示例
- HTML DOM dir用法及代碼示例
- HTML DOM id用法及代碼示例
- HTML Bdo dir用法及代碼示例
- HTML IFrame name用法及代碼示例
- HTML Button value用法及代碼示例
- HTML Button name用法及代碼示例
- HTML Textarea name用法及代碼示例
- HTML DOM attributes用法及代碼示例
注:本文由純淨天空篩選整理自Vishal Chaudhary 2大神的英文原創作品 HTML | DOM parentNode Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。