HTML DOM 快速導覽 - 元素的事件處理屬性 onload

如果要瀏覽器 (broswer) 在開啟網頁檔案之時,元素 (element) 就執行某些 JavaScript 程式,可於 onload 屬性 (attribute) 中設定相關的事件處理程式碼。



舉例如下
function run() {
    document.writeln("There is no spoon.");
}

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


此例在開啟網頁檔案後,直接在瀏覽器中印出 There is no spoon.
document.writeln("There is no spoon.");


我們以下面的 HTML 文件載入
<!DOCTYPE html>
<html>
<head>
<title>HTML DOM DEMO</title>
<script src="event027.js" type="text/javascript"></script>
</head>
<body onload="run();">
</body>
</html>

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


其中的 <body> 元素設置 onload 屬性,因此網頁開啟就會就會執行 run()
<body onload="run();">


瀏覽器開啟網頁檔案,結果如下



中英文術語對照
瀏覽器broswer
元素element
屬性attribute


您可以繼續參考
HTML 元素的事件處理屬性


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


參考資料
http://www.whatwg.org/specs/web-apps/current-work/multipage/elements.html#elements-in-the-dom

沒有留言: