Element.className - Web APIs 编辑
The className
property of the Element
interface 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
let el = document.getElementById('item');
if (el.className === 'active'){
el.className = 'inactive';
} else {
el.className = 'active';
}
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.
className
can also be an instance of SVGAnimatedString
if the element
is an SVGElement
. It is better to get/set the className
of an element using Element.getAttribute
and Element.setAttribute
if you are dealing with SVG elements. However, take into account that Element.getAttribute
returns null
instead of ""
if the element
has an empty class
attribute.
elm.setAttribute('class', elm.getAttribute('class'))
The class
is an HTML Attribute, while the className
is a DOM Property.
Specifications
Specification | Status | Comment |
---|---|---|
DOM The definition of 'element.className' in that specification. | Living Standard | |
DOM4 The definition of 'element.className' in that specification. | Obsolete | |
Document Object Model (DOM) Level 2 HTML Specification The definition of 'element.className' in that specification. | Obsolete | Initial definition |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论