HTML DOM 快速導覽 - window 物件的屬性 top

window.top 回傳最頂層 window 的參考。



舉例如下
function run() {
    var s = document.getElementById("show");
    if (window.top != window.self) {
        s.innerHTML = "This is not the topmost window!";    
    }
    else {
        s.innerHTML = "This is the topmost window!";
    }
}

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


如果 window.self 為 wndow.top ,就在 id 屬性 (attribute) 為 show 的元素 (element) 顯示 "This is the topmost window!"
var s = document.getElementById("show");
if (window.top != window.self) {
    s.innerHTML = "This is not the topmost window!";    
}
else {
    s.innerHTML = "This is the topmost window!";
}


我們利用兩個 HTML 文件載入 window044.js ,以下為 window044_1.html
<!DOCTYPE html>
<html>
<head>
<title>HTML DOM DEMO</title>
<script src="window044.js" type="text/javascript"></script>
</head>
<body>
<input type="button" value="RUN" onclick="run();">
<div>Result: <span id="show"></span></div>
</body>
</html>

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


以下為 window044.html ,其內的 <iframe> 載入 window044_1.html
<!DOCTYPE html>
<html>
<head>
<title>HTML DOM DEMO</title>
<script src="window044.js" type="text/javascript"></script>
</head>
<body>
<input type="button" value="RUN" onclick="run();">
<div>Result: <span id="show"></span></div>
<iframe src="window044_1.html"></iframe>
</body>
</html>

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


瀏覽器 (browser) 開啟 window044.html ,點擊兩個 RUN ,結果如下



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


您可以繼續參考
window 物件


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


參考資料
https://developer.mozilla.org/en/DOM/window.top

沒有留言: