HTML DOM 快速導覽 - 文件物件 document 的屬性 selectedStyleSheetSet

document.selectedStyleSheetSet 回傳文件選擇的樣式表 (style sheet) 。



舉例如下
function init() {
    var s = document.getElementById("show");
    s.innerHTML = document.selectedStyleSheetSet;
}

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


此例將結果給 id 屬性 (attribute) 為 show 的元素 (element) 顯示
s.innerHTML = document.selectedStyleSheetSet;


我們在此例中用了兩個外連的 CSS 檔案,以下是 example1.css
.demo {
    font-size: 4em;
}

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


以下是 example2.css
.demo {
    font-size: 0.5em;
}

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


然後以下面的 HTML 文件載入
<!DOCTYPE html>
<html>
<head>
<title>HTML DOM DEMO</title>
<link type="text/css" rel="stylesheet" title="example1" href="example1.css" />
<link type="text/css" rel="stylesheet" title="example2" href="example2.css" />
<script src="document029.js" type="text/javascript"></script>
</head>
<body onload="init();">
<div class="demo">There is no spoon.</div>
<div>Style Sheet: <span id="show"></span></div>
</body>
</html>

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


瀏覽器 (broswer) 開啟如下



document029.html 載入兩個 CSS 檔案,分別是 example1.css 與 example2.css ,這兩個 CSS 檔案定義了相同的類別選取器 (class selector) demo ,瀏覽器自動選擇使用的是 example1.css 中的規則 (rule) 。


中英文術語對照
樣式表style sheet
屬性attribute
元素element
瀏覽器broswer
類別選取器class selector
規則rule


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


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


參考資料
https://developer.mozilla.org/en/DOM/document.selectedStyleSheetSet
http://www.whatwg.org/specs/web-apps/current-work/#alternate-style-sheets

沒有留言: