- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path11_className-classList.js
More file actions
Latest commit
40 lines (33 loc) · 1.07 KB
/
Copy path11_className-classList.js
File metadata and controls
40 lines (33 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// className - for check class and add
// classList
constfirst=document.querySelector('.first');
constsecond=document.querySelector('.second');
constthird=document.querySelector('.third');
// this just for check class
// const classValue = first.className;
// console.log(classValue); //first
// add first class here can multiple
first.className='text colors';
// but if separator like this
first.className='text';
//the last will select colors, and text class not
first.className='colors';
// classList
//["second", value: "second"] value 0: is second
// so u should need add / remove syntax
console.log(second.classList);
// add class colors on second element
// if u need 2 class use ('class1','class2')
second.classList.add('colors');
second.classList.add('text');
// remove class first colors red
first.classList.remove('colors');
first.classList.add('text');
third.classList.add('colors');
// check use contains
letchecked=third.classList.contains('colors');
if(checked){
console.log('have a class'+checked);
}else{
console.log('not have the class');
}