HTML DOM 快速導覽 - 元素物件 element 的屬性 classList

element.classList 回傳 class 屬性 (attribute) 中標記 DOMTokenList 的集合物件 (object) 。



舉例如下
function run() {
    var p = document.getElementById("parent");
    var s = document.getElementById("show");
    if (p.classList.toggle("n1")) {
        p.classList.remove("n1");
    }
    p.classList.add("n2");
}

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


此例先判斷 id 屬性為 parent 的元素 (element) 的 class 屬性是否有 n1 標記,如果有的的話就呼叫 remove() 方法 (method) 移除此標記
if (p.classList.toggle("n1")) {
    p.classList.remove("n1");
}


然後再呼叫 add() 方法加入 n2 標記
p.classList.add("n2");


我們以下面的 HTML 文件載入
<!DOCTYPE html>
<html>
<head>
<title>HTML DOM DEMO</title>
<script src="element003.js" type="text/javascript"></script>
<style>
.n1 {
    font-size: 48px;
}
.n2 {
    font-size: 20px;
}
</style>
</head>
<body>
<input type="button" value="RUN" onclick="run();">
<div id="parent" class="n1">
<div id="child1">Choice. The problem is choice.</div>
<div id="child2">There is no spoon.</div>
<div id="child3">Because I choose to.</div>
</div>
</body>
</html>

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


瀏覽器 (broswer) 開啟, n1 類別的字型大小為 48px



按下 RUN 後,字型大小就變為 20px



中英文術語對照
屬性method
物件object
元素element
方法method
瀏覽器broswer


您可以繼續參考
元素物件 element


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


參考資料
https://developer.mozilla.org/en/DOM/element.classList
http://www.whatwg.org/specs/web-apps/current-work/multipage/elements.html#dom-classlist

沒有留言: