DOM nav對象用於表示HTML <nav>元素。 <nav>元素由getElementById()訪問。
用法:
document.getElementById("id")
id分配給<nav>標簽的位置。
注意:Internet Explorer 8和更早版本不支持Nav對象。
範例1:
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Nav Object
</title>
</head>
<body>
<h1>
GeeksforGeeks
</h1>
<h2>HTML DOM nav Object</h2>
<nav id = "nav_object">
<a href="#">Data Structure</a> |
<a href="#">Algorithm</a> |
<a href="#">Programming Languages</a>
</nav>
<br>
<button onclick = "Geeks()">
Click Here!
</button>
<p id = "sudo"></p>
<script>
function Geeks() {
var obj = document.getElementById("nav_object").innerHTML;
document.getElementById("sudo").innerHTML = obj;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
範例2:可以使用document.createElement方法創建導航對象。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM nav Object
</title>
</head>
<body>
<h1 style = "color:green;" >
GeeksForGeeks
</h1>
<h2>DOM nav Object</h2>
<button onclick = "Geeks()">
Click Here!
</button>
<br><br>
<script>
function Geeks() {
var ele = document.createElement("NAV");
document.body.appendChild(ele);
var a = document.createElement("A");
a.setAttribute("href", "/html");
var txt = document.createTextNode("Home");
a.appendChild(txt);
ele.appendChild(a);
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
相關用法
- HTML <nav>用法及代碼示例
- HTML DOM Object用法及代碼示例
- CSS nav-left用法及代碼示例
- CSS nav-up用法及代碼示例
- CSS nav-down用法及代碼示例
- CSS nav-right用法及代碼示例
- CSS nav-index用法及代碼示例
- HTML DOM HTML用法及代碼示例
- HTML DOM Input Week用法及代碼示例
- HTML DOM Column用法及代碼示例
- HTML DOM Del用法及代碼示例
- HTML DOM Embed用法及代碼示例
- HTML DOM Header用法及代碼示例
- HTML DOM Footer用法及代碼示例
- HTML DOM Span用法及代碼示例
- HTML DOM HR用法及代碼示例
注:本文由純淨天空篩選整理自Vishal Chaudhary 2大神的英文原創作品 HTML | DOM Nav Object。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。