HTML DOM中的Section對象用於表示HTML <section>元素。可以使用getElementById()方法訪問section元素。
用法:
document.getElementById("id")
將id分配給<section>標簽的位置。
範例1:
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM section Object
</title>
</head>
<body style = "text-align:center;">
<h1 style = "color:green;" >
GeeksForGeeks
</h1>
<h2>DOM section Object</h2>
<button onclick = "Geeks()">
Click Here
</button>
<br><br>
<section id = "sec">
A computer science portal for geeks.
</section>
<script>
function Geeks() {
var txt = document.getElementById("sec");
txt.style.color = "green";
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
範例2:可以使用document.createElement方法創建Section對象。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM section Object
</title>
</head>
<body>
<h1 style = "color:green;" >
GeeksForGeeks
</h1>
<h2>DOM section Object</h2>
<button onclick = "Geeks()">
Click Here!
</button><br>
<script>
function Geeks() {
var x = document.createElement("SECTION");
x.setAttribute("id", "sec");
document.body.appendChild(x);
var para = document.createElement("H5");
var txt = document.createTextNode("This"
" text belongs to section.");
para.appendChild(txt);
document.getElementById("sec").appendChild(para);
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
注:本文由純淨天空篩選整理自GeeksforGeeks大神的英文原創作品 HTML | DOM Section Object。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。