Home > Web Front-end > H5 Tutorial > body text

New attributes in HTML5: How to use the classList attribute

不言
Release: 2018-08-10 11:18:58
Original
2580 people have browsed it

The content of this article is about the new attributes of HTML5: how to use the classList attribute. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

The classList attribute has been added to HTML5, which is used to operate classes. Its API is as follows:

contains(value):判断名为value的类名是否存在add(value):添加名为value的类名
remove(value):删除名为value的类名
toggle(value):如果名为value的存在则删除,不存在则添加
Copy after login

js sample code:

//获取节点
var $test = document.getElementById("test");
//增加一个
class$test.classList.add("new-class");
//删除一个
class$test.classList.remove("old-class");
//存在则删除,不存在则添加
$test.classList.toggle("class");
//判断是否包含
$test.classList.contains("class");
//替换
class$test.classList.remove("old-class");
$test.classList.add("new-class");
Copy after login

Related recommendations:

What are the main structures of html file production?

Judgement of page visibility in HTML5 (with code)

How to solve the margin-top collapse problem in HTML5 (with code)

The above is the detailed content of New attributes in HTML5: How to use the classList attribute. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!