HTML DOM 快速導覽 - 元素物件 <h1> <h2> <h3> <h4> <h5> <h6> (HTMLHeadingElement)

<h1> 、 <h2> 、 <h3> 、 <h4> 、 <h5> 、 <h6> 為 HTML 文件的文件區域元素 (section) , DOM 介面為 HTMLHeadingElement 。



取得 <h1> 或 <h2> 或 <h3> 或 <h4> 或 <h5> 或 <h6> 的元素物件 (object) 後,可存取元素的全域屬性 (global attribute) 。


舉例如下
function run() {
    var d = document.getElementsByTagName("h1");
    var s = document.getElementById("show");
    s.innerHTML = d[0];
}

/* 《程式語言教學誌》的範例程式
     http://pydoing.blogspot.com/
     檔名:htmldemo015.js
     功能:示範 JavaScript 程式 
     作者:張凱慶
     時間:西元 2011 年 8 月 */


此例用 document 物件的 getElementsByTagName() 方法 (method) ,取得標籤名稱為 aside 的 HTMLCollection 物件,文件的第一個 <aside> 元素亦即該 HTMLCollection 索引值為 0 的物件
var d = document.getElementsByTagName("h1");
var s = document.getElementById("show");
s.innerHTML = d[0];


然後在 id 屬性 (attribute) 為 show 的元素中顯示 d[0] 。


我們以下面的 HTML 文件載入
<!DOCTYPE html>
<html>
<head>
<title>HTML DOM DEMO</title>
<script src="htmldemo015.js" type="text/javascript"></script>
</head>
<body>
<h1>There is no spoon.</h1>
<input type="button" value="RUN" onclick="run();">
<div>Result: <span id="show"></span></div>
</html>

<!-- 《程式語言教學誌》的範例程式
     http://pydoing.blogspot.com/
     檔名:htmldemo015.html
     功能:示範 JavaScript 程式 
     作者:張凱慶
     時間:西元 2011 年 8 月 -->


瀏覽器 (broswer) 開啟,按 RUN 後如下



中英文術語對照
文件區域元素section
物件object
全域屬性global attribute
方法method
屬性attribute
瀏覽器broswer


您可以繼續參考
HTML 5 範例

HTML 元素物件


相關目錄
HTML DOM 快速導覽
JavaScript 教材
首頁


參考資料
https://developer.mozilla.org/en/DOM/HTMLHeadingElement
https://developer.mozilla.org/en/HTML/Element/h1
https://developer.mozilla.org/en/HTML/Element/h2
https://developer.mozilla.org/en/HTML/Element/h3
https://developer.mozilla.org/en/HTML/Element/h4
https://developer.mozilla.org/en/HTML/Element/h5
https://developer.mozilla.org/en/HTML/Element/h6
http://www.whatwg.org/specs/web-apps/current-work/multipage/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements

沒有留言: