DOM nodeType屬性用於查找我們要引用的節點的類型。特定節點的類型以數字形式返回。 DOM nodeType屬性是一個隻讀屬性。
返回值:它根據節點的類型返回一個數值。
- 1:如果node是元素節點。
- 2:如果節點是屬性節點。
- 3:如果node是文本節點。
- 8:如果節點是注釋節點。
用法:
nodeName.nodeType
示例1:
<!DOCTYPE html>
<html>
<head>
<title>
HTML|DOM nodeType Property
</title>
<style>
p,
h5 {
color:green;
}
</style>
</head>
<body style="text-align:center;">
<p id="gfg">
GeeksforGeeks
</p>
<h5>
Welcome to GeeksforGeeks
</h5>
<button onclick="node()">
Click here to know the node type.
</button>
<p id="nodetype"></p>
<script>
function node() {
var geek = document.getElementById("gfg").nodeType;
// innerHTML fetches value of element
// valued "nodetype"
// and update it with new value of variable
// "geek"(nodeType value of geek)
document.getElementById("nodetype").innerHTML = geek;
}
</script>
</body>
</html>
輸出:
之前:
後:
示例2:
<!DOCTYPE html>
<html>
<head>
<title>HTML|DOM nodeType Property</title>
<style>
h5 {
color:green;
}
</style>
</head>
<body style="text-align:center;">
<h3>Welcome to GeeksforGeeks</h3>
<button onclick="nType()">
Click here to know the node type.
</button>
<p id="nodetype"></p>
<script>
// nType() function is used to fetch our node
// and find out its type
function nType() {
var geek = document.body.nodeType;
document.getElementById("nodetype").innerHTML = geek;
}
</script>
</body>
</html>
輸出:
之前:
後:
支持的瀏覽器:
- 穀歌瀏覽器
- 互聯網瀏覽
- 火狐瀏覽器
- Opera
- 蘋果瀏覽器
相關用法
- HTML Bdo dir用法及代碼示例
- HTML DOM specified用法及代碼示例
- HTML DOM URL用法及代碼示例
- HTML DOM value用法及代碼示例
- HTML DOM name用法及代碼示例
- HTML li value用法及代碼示例
- HTML Map name用法及代碼示例
- HTML DOM dir用法及代碼示例
- HTML DOM id用法及代碼示例
- HTML DOM nextElementSibling用法及代碼示例
- HTML DOM implementation用法及代碼示例
- HTML DOM title用法及代碼示例
- HTML DOM innerHTML用法及代碼示例
- HTML DOM baseURI用法及代碼示例
- HTML Input URL value用法及代碼示例
注:本文由純淨天空篩選整理自Abhishek7大神的英文原創作品 HTML | DOM nodeType Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。