-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanagerLeft.html
More file actions
33 lines (30 loc) · 1.24 KB
/
managerLeft.html
File metadata and controls
33 lines (30 loc) · 1.24 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>无标题文档</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/books.css" />
<script src="js/jquery-2.2.3.js"></script>
</head>
<body style="margin:0;padding:0;overflow:hidden" scroll="no">
<div class="wrap" >
<div class="left_content" style="background: white;width: 53.8%;float: right;height:700px;">
<ul class="list">
<li class="tag select_tag"><a href="booksAdd.jsp" target="rightFrame" class="tag_a" style="color:#734633">增加图书</a></li>
<li class="tag"><a href="booksList" target="rightFrame" class="tag_a" style="color:#734633">图书列表</a></li>
<li class="tag"><a class="tag_a" style="color:#734633">图书分类整理</a></li>
<li class="tag"><a class="tag_a" style="color:#734633">图书下架管理</a></li>
<li class="tag"><a class="tag_a" style="color:#734633">卖家信息管理</a></li>
</ul>
</div><!-- end of left content -->
</div>
<script type="text/javascript">
$(".tag").click(function(){
//alert("asd");
$(".tag").removeClass("select_tag");
$(this).addClass("select_tag");
})
</script>
</body>
</html>