$1.classList.add
时间: 2023-08-14 12:05:31 浏览: 139
1.Addclass.c
classList.add 方法是用于向元素的 class 属性中添加一个或多个类名。在 JavaScript 中,可以使用此方法来动态修改元素的类。
例如,如果要向一个元素添加名为 "active" 的类,可以使用以下代码:
```javascript
var element = document.getElementById("myElement");
element.classList.add("active");
```
这将在元素的 class 属性中添加 "active" 类名。如果要添加多个类名,可以将它们作为参数传递给 add 方法,如下所示:
```javascript
element.classList.add("active", "highlight");
```
这将同时添加 "active" 和 "highlight" 两个类名到元素的 class 属性中。
请注意,如果元素已经具有相同的类名,那么它们将被忽略,不会重复添加。
阅读全文