How to add a class to a given element?(如何将类添加到给定元素?)
问题描述
我有一个元素已经有一个类:
I have an element that already has a class:
<div class="someclass">
<img ... id="image1" name="image1" />
</div>
现在,我想创建一个 JavaScript 函数,它将向 div
添加一个类(不是替换,而是添加).
Now, I want to create a JavaScript function that will add a class to the div
(not replace, but add).
我该怎么做?
推荐答案
如果你只针对现代浏览器:
使用 element.classList.add 添加一个类:
element.classList.add("my-class");
和 element.classList.remove 删除一个类:
element.classList.remove("my-class");
如果您需要支持 Internet Explorer 9 或更低版本:
在元素的 className
属性中添加一个空格和新类的名称.首先,在元素上放一个id
,这样你就可以很容易地获得参考.
If you need to support Internet Explorer 9 or lower:
Add a space plus the name of your new class to the className
property of the element. First, put an id
on the element so you can easily get a reference.
<div id="div1" class="someclass">
<img ... id="image1" name="image1" />
</div>
然后
var d = document.getElementById("div1");
d.className += " otherclass";
注意otherclass
之前的空格.包含空格很重要,否则它会损害类列表中位于它之前的现有类.
Note the space before otherclass
. It's important to include the space otherwise it compromises existing classes that come before it in the class list.
另请参阅 element.className on MDN.
这篇关于如何将类添加到给定元素?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将类添加到给定元素?
基础教程推荐
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 动态更新多个选择框 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01