-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhrefTest.html
More file actions
57 lines (55 loc) · 1.27 KB
/
hrefTest.html
File metadata and controls
57 lines (55 loc) · 1.27 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>hrefTest</title>
<style type="text/css">
.red {
color: red;
}
.green {
color: green;
}
.yellow {
background-color: yellow;
}
</style>
<script src="jquery-3.2.1.min.js"></script>
<script>
$(document).ready(function() {
$('a.select1').click(function() {
$('a').removeClass();
$('a').addClass('red');
return false;
});
$('a.select2').click(function() {
$('a').removeClass();
$('#mainNav a').addClass('green');
$('.navigation a').addClass('yellow');
return false;
});
$('a.select3').click(function() {
$('a').removeClass();
$('a[href^="http://"]').addClass('yellow');
return false;
});
});
</script>
</head>
<body>
<div class="content">
<div class="navigation">
<ul id="mainNav">
<li><a href="http://www.google.com">Google</a></li>
<li><a href="http://www.yahoo.com.tw">Yahoo</a></li>
<li><a href="http://www.hinet.net">Hinet</a></li>
<li><a href="http://www.pchome.com.tw">PCHome</a></li>
<li><a href="#about">About Me</a></li>
</ul>
</div>
</div>
<a href="#" class="select1">全部超連結</a>
<a href="#" class="select2">巡覽超連結</a>
<a href="#" class="select3">URL 網址超連結</a>
</body>
</html>