Last updated 3 years ago
讓某元素加上指定的 class。
讓某元素移除指定的 class。
判斷某元素是否存在某個 class。
某元素若存在某個 class,就移除;反之,就加上。
var the_block = document.getElementById("the_block"); the_block.style.opacity = 0.2; the_block.style.backgroundColor = "blue";
範例: