## 删除功能
~~~
<td><button @click="delBook(index)">删除</button></td>
~~~
~~~
methods:{
delBook:function(idx){//删除当前这本书
this.books.splice(idx,1);
}
}
~~~
## 添加新书
js
~~~
<script>
var vm = new Vue({
el: '#app',
data: {
newBook:{
id:0,
name:'',
author:'',
price:'',
tag:''
}
},
methods:{
addBook:function(){//添加新书
var maxId=0;
for(var i=0;i<this.books.length;i++){
if(maxId<this.books[i].id){
maxId=this.books[i].id;
}
}
this.newBook.id=maxId+1;
this.books.push(this.newBook);
this.newBook={};
}
}
})
</script>
~~~
html
~~~
<div class="add">
<h2>添加新书</h2>
<div class="form-group">
<p>书名:<input type="text" v-model="newBook.name" /></p>
<p>作者:<input type="text" v-model="newBook.author"/></p>
<p>价格:<input type="text" v-model="newBook.price"/></p>
<p>标签:<input type="text" v-model="newBook.tag"/></p>
<p><button @click="addBook">添加</button></p>
</div>
</div>
~~~
## 完整代码
>[info]附完整代码
~~~
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>前端研习社-图书管理系统</title>
<style>
h1{
text-align: center;
}
table,
td,
th {
border-collapse: collapse;
border-spacing: 0
}
table {
width: 600px;
margin: 0 auto;
text-align: center;
}
td,
th {
border: 1px solid #bcbcbc;
padding: 5px 10px;
}
th {
background: #42b983;
font-size: 1.2rem;
font-weight: 400;
color: #fff;
cursor: pointer;
}
tr:nth-of-type(odd) {
background: #fff;
}
tr:nth-of-type(even) {
background: #eee;
}
.add{
width: 400px;
padding:10px 50px;
margin: 10px auto;
background: #ccc;
border-radius: 5px;
}
h2{
text-align: center;
}
p{
height: 50px;
line-height: 50px;
}
input{
width: 300px;
height: 50px;
line-height: 50px;
font-size:20px;
padding-left:10px ;
}
p button{
float: right;
width: 100px;
height: 50px;
line-height: 50px;
font-size:20px;
border-radius: 5px;
}
</style>
<script src="vue.js"></script>
</head>
<body>
<div id="app">
<h1>图书管理系统</h1>
<table>
<thead>
<tr>
<th>序号</th>
<th>书名</th>
<th>作者</th>
<th>价格</th>
<th>标签</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr v-for="book in books">
<td>{{ book.id }}</td>
<td>{{ book.name }}</td>
<td>{{ book.author }}</td>
<td>{{ book.price }}</td>
<td>{{ book.tag }}</td>
<td><button @click="delBook(index)">删除</button></td>
</tr>
</tbody>
</table>
<div class="add">
<h2>添加新书</h2>
<div class="form-group">
<p>书名:<input type="text" v-model="newBook.name" /></p>
<p>作者:<input type="text" v-model="newBook.author"/></p>
<p>价格:<input type="text" v-model="newBook.price"/></p>
<p>标签:<input type="text" v-model="newBook.tag"/></p>
<p><button @click="addBook">添加</button></p>
</div>
</div>
</div>
</body>
<script>
var vm = new Vue({
el: '#app',
data: {
books:[
{id:1,name:'《三国演义》',author:'罗贯中',price:'99.99',tag:'经典'},
{id:2,name:'《红楼梦》',author:'曹雪芹',price:'88',tag:'推荐'},
{id:3,name:'《水浒传》',author:'施耐庵',price:'77',tag:'热销'},
{id:4,name:'《西游记》',author:'吴承恩',price:'60',tag:'经典'}
],
newBook:{
id:0,
name:'',
author:'',
price:'',
tag:''
}
},
methods:{
addBook:function(){//添加新书
var maxId=0;
for(var i=0;i<this.books.length;i++){
if(maxId<this.books[i].id){
maxId=this.books[i].id;
}
}
this.newBook.id=maxId+1;
this.books.push(this.newBook);
this.newBook={};
},
delBook:function(idx){//删除当前这本书
this.books.splice(idx,1);
}
}
})
</script>
</html>
~~~
- 前端新手村
- 前言
- 第1章 遇见Vue.js
- 第一个Vue.js程序
- vue尝鲜
- 第2章 概念理解
- 渐进式框架
- 虚拟DOM
- MVVM模式
- MVX模式是什么
- 第3章 Vue基础概览
- 第4章 Vue内置指令详解
- vue-text
- vue-html
- v-show
- v-if
- v-else
- v-else-if
- v-for
- v-on
- v-bind
- v-model
- v-pre
- v-cloak
- v-once
- 第5章 基础demo小练习
- 图书管理系统
- 页面布局
- 列表渲染
- 功能实现
- 基于BootStrap+Vuejs实现用户信息表
- 功能描述
- 布局实现
- 星座判断
- 第6章 组件
- 什么是组件
- 使用组件
- Prop
- 自定义事件
- 使用Slot分发内容
- 动态组件
- 杂项
- 第7章-过渡
- 过渡效果
- 概述
- 单元素/组件的过渡
- 初始渲染的过渡
- 多个元素的过渡
- 多个组件的过渡
- 列表过渡
- 可复用的过渡
- 动态过渡
- 过渡状态
- 状态动画与watcher
- 动态状态转换
- 通过组件组织过渡
- Render函数
- 基础
- createElement参数
- 使用JavaScript代替模板功能
- JSX
- 函数化组件
- 模板编译
- 自定义指令
- 简介
- 钩子函数
- 钩子函数参数
- 函数简写
- 对象字面量
- Vuex状态管理
- Vuex是什么?
- Vuex的安装
- Vuex起步
- data的替代品-State和Getter
- 测试Getter
- Action-操作的执行者
- 测试Action
- 只用Mutation修改状态
- 测试Mutations
- Vuex的基本结构
- 子状态和模块
- 用服务分离外部操作
- Vue-router
- Vue-router是什么
- Vue-router安装
- 基本用法1
- 基本用法2
- Vue-cli
- Vue中的Node.js
- Vue中的npm、cnpm
- Vue中的webpack
- 安装
- 基本使用
- 模板
- 全局API
- Vue.extend
- Vue.nextTick
- Vue.set
- Vue.delete
- Vue.directive
- Vue.filter
- Vue.component
- Vue.use
- Vue.mixin
- Vue.compile
- 附录
- 相关网站
- 尤雨溪
- 第10章 webpack
- webpack安装
- webpack基本使用
- webpack命令行
- webpack配置文件
- 单页面应用SPA
- 第1章 Vue.js简介
- 1.1 Vue.js简介
- 1.1.1 Vue.js是什么
- 1.1.2 为什么要用Vue.js
- 1.1.3 Vue.js的发展历史
- 1.1.4 Vue.js与其他框架的区别
- 1.2 如何使用Vue.js
- 1.2.1 第一个Vue.js程序
- 1.2.2 Vue.js小尝鲜
- 1.3 概念详解
- 1.3.1 什么是渐进式框架
- 1.3.2 虚拟DOM是什么
- 1.3.3 如何理解MVVM
- 第2章 基础概览
- 2.1 Vue实例
- 2.1.1 构造器
- 2.1.2 属性与方法
- 2.1.3 实例生命周期
- 2.1.4 生命周期图示
- 2.2 模板语法
- 2.2.1 插值
- 2.2.2 指令
- 2.2.3 过滤器
- 2.2.4 缩写
- 第3章 Class与Style的绑定
- 第4章 模板渲染
- 第5章 事件详解
- 第6章 表单控件绑定
- 第7章 指令详解
- 7.1 内部指令
- 7.2 自定义指令
- 7.3 指令的高级选项
- 第8章 计算属性
- 第9章 过滤器
- 第10章 组件
- 10.1 什么是组件
- 10.2 注册组件
- 10.3 组件选项
- 10.4 组件间的通信
- 10.5 内容分发
- 10.6 动态组件