仿图书管理系统

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8" />

<style>

*{

padding: 0;

margin: 0;

}

#wrap{

width: 400px;

margin: 20px auto 0;

overflow-y: scroll;

height: 600px;

border: 1px solid #ccc;

position: relative;

}

.clear:after{

display: block;

content: "";

clear: both;

}


#nav{

width: 100%;

height: 44px;

background: black;

text-align: center;

}

#navAddBookBtn{

color: white;

height: 44px;

font-size: 15px;

background: transparent;

border: 0px;

float: left;

cursor: pointer;

}

#navFindBookBtn{

color: white;

height: 44px;

font-size: 15px;

background: transparent;

border: 0px;

float: right;

cursor: pointer;

}

#library{

color: red;

line-height: 44px;

font-size: 30px;

}

#bookAddView{

position: fixed;

text-align: center;

background: white;

height: 200px;

top: 100px;

width: 400px;background: #CCCCCC;}

#bookAddView label{display: block;margin-top: 5px;}

#bookAddView #finishAdd{color: red;font-size: 18px;cursor: pointer;}

#boodFindView{width: 400px;height: 556px;

position: absolute;top: 44px;background: white;}

#boodFindView #out{float: right;margin-right: 20px;cursor: pointer;}

#find{cursor: pointer;}

ul{list-style: none;}

#allBook li{

height: 60px;

width: 100%;

background: #DDDDDD;

margin-top: 10px;

}

#allBook li p{

border-bottom: 1px dashed #CCCCCC;

text-align: center;

font-size: 18px;

}

#allBook li .liPrice{

float: left;

}

#allBook li .removeBook{

float: right;

background: red;

cursor: pointer;

}

</style>

<title>仿图书管理系统</title>

</head>

<body>

<div id="wrap">

<div id="nav" class="clear">

<input type="button" id="navAddBookBtn" value="添加图书" />

<label id="library">图书馆</label>

<input type="button" id="navFindBookBtn" value="查找图书" />

</div>

<ul id="allBook"></ul>

<!--添加图书的浮层-->

<div id="bookAddView" style="display: none">

<label>名字:<input type="text"  id="bookName"/></label><br>

<label>作者:<input type="text"  id="bookAuthor"/></label><br>

<label>版社:<input type="text"  id="bookPublic"/></label><br>

<label>价格:<input type="number"  id="bookPrice"/></label><br>

<input id="finishAdd" type="button" value="提交"/>

</div>

<div id="boodFindView" style="display: none;">

<select id="select">

<option value="bookName">名字</option>

<option value="bookAuthor">作者</option>

<option value="bookPublish">版社</option>

<option value="bookPrice">价格</option>

</select>

<input type="text" id="searchTxt" value="" />

<input type="button" id="find" value="查找" />

<input type="button" id="out" value="退出" />

<ul id="someBook"></ul>

</div></div>

</body>

</html>

<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>

<script>

/*

  书名

  作者

  价格

  出版社

 * */

function Book(name, price, author, publish) {

this.bookName = name;

this.bookPrice = price;

this.bookAuthor = author;

this.bookPublish = publish;

}

function BookManager() {

//1、属性-存储图书(仓库)

this.bookArr = [];

// 2、添加图书的功能

this.addBookToLibrary = function(name, price, author, publish) {

// 根据传递来的图书信息,创建一本图书并且存储到 仓库

var aBook = new Book(name, price, author, publish);

this.bookArr.push(aBook);

// 添加了一本图书就展示一次

this.showAllBook();

}

/*展示所有图书的公共方法*/

this.showAllBook = function() {

$("#allBook").html(""); // 每次展示都先置空所有图书

// 遍历仓库,取出每一本图书,展示到页面

for(var i = 0; i < this.bookArr.length; i++) {

var theBook = this.bookArr[i];

var aLi = $("<li></li>");

aLi.html("<p class='liName'>" + theBook.bookName + "</p>" + "<span class='liPrice'>" + theBook.bookPrice + "</span>" + "<span class='removeBook'>删除</span>");

$("#allBook").append(aLi);

// 给 li 一个自定义属性,记录它是第几个

aLi.attr("index", i);

}

//3、给删除按钮绑定事件

$(".removeBook").click(function() {

// 告诉 BoookManager 删除这本图书

var theLi = $(this).parent();

var index = theLi.attr("index");

manager.removeBookFromLi(index);

});

}

// 3、删除图书的方法

this.removeBookFromLi = function(index) {

this.bookArr.splice(index, 1);

//重新显示

this.showAllBook();

}


//4、查找图书

this.findBookByCategory = function(category, keyword) {

for(var i = 0; i < this.bookArr.length; i++) {

var aBook = this.bookArr[i];

if(aBook[category].indexOf(keyword) != -1) {

// 显示这本图书

var aLi = $("<li></li>");

aLi.html("<p class='liName'>" + aBook.bookName + "</p>" + "<span class='liPrice'>" + aBook.bookPrice + "</span>" + "<span class='removeBook'>删除</span>");

$("#someBook").append(aLi);


}


}

}


}

// 创建一个图书馆

var manager = new BookManager();

// 1、给“添加”按钮绑定事件

$("#navAddBookBtn").click(function() {

$("#bookAddView").show(1000);

});

//2、给“提交”按钮绑定事件--添加图书页面的“提交”按钮

$("#finishAdd").click(function() {

//1、让图书馆添加一本图书

var name = $("#bookName").val();

var price = $("#bookPrice").val();

var author = $("#bookAuthor").val();

var publish = $("#bookPublic").val();

manager.addBookToLibrary(name, price, author, publish);

//2、隐藏这个浮层

$("#bookAddView").hide(1000);

});


// 给查找按钮绑定事件

$("#navFindBookBtn").click(function() {

// 隐藏添加图书界面

$("#bookAddView").hide();

$("#boodFindView").show(1000);

});

// 给查找页面的 “查找”按钮绑定事件

$("#find").click(function() {

// 1.取出 select 选择的是什么

var selected = $("#select").val();

//2、取出输入框输入的内容

var searchTxt = $("#searchTxt").val();

//3、让 BookManager 去查找对应的图书

manager.findBookByCategory(selected, searchTxt);


});

// 给查找页面的 “退出”按钮绑定事件

$("#out").click(function() {

$("#boodFindView").hide(1000);

});

</script>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值