我們的志工尚未將此文章翻譯為 正體中文 (繁體) 版本。加入我們,幫忙翻譯!
Summary
className gets and sets the value of the class
attribute of the specified element.
Syntax
var cName = elementNodeReference.className; elementNodeReference.className = cName;
- cName is a string variable representing the class or space-separated classes of the current element.
Example
var elm = document.getElementById("div1"); if (elm.className === "fixed") { // skip a particular class of element goNextElement(); }
Notes
The name className
is used for this property instead of class
because of conflicts with the "class" keyword in many languages which are used to manipulate the DOM.
Specifications
Specification | Status | Comment |
---|---|---|
DOM The definition of 'element.className' in that specification. |
Living Standard | |
DOM4 The definition of 'element.className' in that specification. |
Recommendation | |
Document Object Model (DOM) Level 2 HTML Specification The definition of 'element.className' in that specification. |
Recommendation | Initial definition |
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
See also
文件標籤與貢獻者
標籤:
此頁面的貢獻者:
cvrebert,
Sebastianz,
fscholz,
teoli,
BobHensley,
DrifterZ28,
kscarfone,
Prachi_Dighe,
Sheppy,
ethertank,
rpncreator,
ziyunfei,
dextra,
Crash,
Dewang,
Ptak82,
RobG,
BenoitL,
GT,
Pmsyyz,
Nickolay,
Dria,
JesseW
最近更新:
cvrebert,