HTML DOM 快速導覽 - window 物件的方法 getComputedStyle()

window.getComputedStyle() 取得元素 CSSStyleDeclaration 型態的 style 物件。



getComputedStyle() 需要一個參數
window.clearTimeout(element);


element 為某個元素物件,舉例如下
function run() {
    var d = document.getElementById("demo");
    var c = window.getComputedStyle(d);
    var s = document.getElementById("show");
    s.innerHTML = c.color;
}

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


此例取得 id 屬性 (attribute) 為 demo 的元素 (element) 物件後,再以 getComputedStyle() 取得該元素的 style 物件,並在 id 屬性為 show 的元素中顯示該元素所設定的文字顏色
var d = document.getElementById("demo");
var c = window.getComputedStyle(d);
var s = document.getElementById("show");
s.innerHTML = c.color;


我們以下面的 HTML 文件載入
<!DOCTYPE html>
<html>
<head>
<title>HTML DOM DEMO</title>
<script src="window053.js" type="text/javascript"></script>
<style>
#demo {
    font-size: x-large;
    color: gray;
}
</style>
</head>
<body>
<div id="demo">There is no spoon.</div>
<input type="button" value="RUN" onclick="run();">
<div>Result: <span id="show"></span></div>
</body>
</html>

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


瀏覽器 (browser) 開啟,點擊 RUN 後就會顯示文字顏色的 rgb()



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


您可以繼續參考
window 物件


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


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

沒有留言: