-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestJquery.html
72 lines (72 loc) · 1.29 KB
/
testJquery.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
66
67
68
69
70
71
72
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>云游戏首页-云游戏,高端的游戏</title>
<script type="text/javascript" src="jquery-1.6.1.min.js"></script>
</head>
<body>
<ul>
<li>
<h3 class="title">标题1</h3>
<ul>
<li>项目1</li>
<li>项目2</li>
</ul>
<ul>
<li>项目1</li>
<li>项目2</li>
</ul>
<ul>
<li>项目1</li>
<li>项目2</li>
</ul>
<ul>
<li>项目1</li>
<li>项目2</li>
</ul>
</li>
<li>
<h3 class="title">标题1</h3>
<ul class="x2">
<li>项目1</li>
<li>项目2</li>
</ul>
<ul>
<li>项目4</li>
<li>项目5</li>
</ul>
<ul>
<li>项目6</li>
<li>项目7</li>
</ul>
<ul>
<li>项目8</li>
<li>项目9</li>
</ul>
</li>
<li>
<h3 class="title">标题1</h3>
<ul>
<li>项目1</li>
<li>项目2</li>
</ul>
<ul>
<li>项目1</li>
<li>项目2</li>
</ul>
<ul>
<li>项目1</li>
<li>项目2</li>
</ul>
<ul>
<li>项目1</li>
<li>项目2</li>
</ul>
</li>
</ul>
<script type="text/javascript">
$(".title").click(function () { $(this).parent().find('.x2').hide(); });
</script>
</body>
</html>