Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

element.className

概要

className は要素の class 属性の値の取得 / 設定に用います。

構文

cName = elementNodeReference.className;
elementNodeReference.className = cName;
  • cName : クラス名(文字列)

var elm = document.getElementById("div1"); //対象要素を取得

if (elm.className == "fixed") {
  // 対象要素のクラス名が "fixed" であった場合の処理をここに記述
}

注記

"class" という語句はプログラミングに於いて様々な文脈で用いられる為、競合を防ぐために className という名称となっています。

仕様書

関連情報

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: fscholz, jsx, ethertank, dextra
 最終更新者: jsx,