HTML DOM 快速導覽 - 文件物件 document 的方法 getElementById()

document.getElementById() 回傳 id 屬性 (attribute) 的元素 (element) 物件 (object) 。



舉例如下
function run() {
    var s = document.getElementById("show");
    s.innerHTML = "There is no spoon.";
}

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


此例以變數 (variable) s 取得 id 屬性為 show 的元素物件
var s = document.getElementById("show");
s.innerHTML = "There is no spoon.";


然後將該物件內容設定成 There is no spoon.


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

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


瀏覽器 (broswer) 開啟,按下 RUN 的結果如下



中英文術語對照
屬性attribute
元素element
物件object
變數variable
瀏覽器broswer


您可以繼續參考
基本概念
文件物件 document


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


參考資料
https://developer.mozilla.org/en/DOM/document.getElementById
http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-getElBId

沒有留言: