gpt4 book ai didi

javascript - 如何在没有 jQuery 的情况下在 Javascript 中添加和删除类

转载 作者:IT王子 更新时间:2023-10-29 03:05:39 24 4
gpt4 key购买 nike

我正在寻找一种无需 jQuery 即可在 html 元素中添加和删除类的快速且安全的方法。
它也应该适用于早期的 IE(IE8 及更高版本)。

最佳答案

另一种使用纯 JavaScript 将类添加到元素的方法

添加类:

document.getElementById("div1").classList.add("classToBeAdded");

对于删除类:

document.getElementById("div1").classList.remove("classToBeRemoved");

注意:但在 IE <= 9 或 Safari <=5.0

中不受支持

关于javascript - 如何在没有 jQuery 的情况下在 Javascript 中添加和删除类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26736587/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com