-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jquery_DOM_CSS.html
65 lines (50 loc) · 1.36 KB
/
Jquery_DOM_CSS.html
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JQuery DOM</title>
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>;
<script>
$(document).ready(function(){
$("#btn1").click(function(){
$("h1,h2,p").addClass("red");
$("div").addClass("important");
});
$("#btn2").click(function(){
$("#div1").addClass("important red");
});
$("#btn3").click(function(){
$("h1,h2,p").removeClass("red");
})
$("#btn4").click(function(){
$("h1,h2,p").toggleClass("red");
});
});
</script>
<style>
.important {
font-weight: bold;
font-size: xx-large;
color: blue;
}
.red {
color: red;
}
</style>
</head>
<body>
<h1>DEMO H1 THÔI</h1>
<h2>DEMO H2</h2>
<p> Lập trình front end cơ bản</p>
<p> Lập trình front end cơ bản tại Myclass.vn</p>
<div id="div1">Lập trình front end cơ bản tại Myclass.vn Important</div>
<br><br>
<button id="btn1">Thêm class đến các thẻ</button>
<button id="btn2">Thêm NHIỀU class đến các thẻ</button>
<button id="btn3">xoá class</button>
<button id="btn4">Toggle class</button>
</body>
</html>