> 效果如图
![](https://box.kancloud.cn/5984dc5117a867ac512bb529f22f9f3f_1205x340.gif)
>html代码
```
<!-- v-cloak 配合属性选择器display:none,加载完毕自动移除 -->
<div id="app" v-cloak>
<form action="#">
<input type="text" v-model="pid">
<input type="text" v-model="pname">
<input type="button" value="添加" id="add" v-on:click="add">
</form>
<table>
<thead>
<tr>
<th>编号</th>
<th>名称</th>
<th>创建时间</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="4" v-if="list.length == 0">数据为空</td>
</tr>
<tr v-for="item in list">
<td>{{item.id}}</td>
<td>{{item.name}}</td>
<td>{{item.ctime}}</td>
<td><a href="javascript:void(0)" v-on:click="del(item)">删除</a></td>
</tr>
</tbody>
</table>
</div>
```
>vue.js代码
```
new Vue({
el: "#app",
data: {
list: [
{id:1, name:"奔驰", ctime:new Date}
// {id:2, name:"宝马", ctime:new Date}
],
pid:"",
pname:""
},
methods: {
add: function(){
// console.log(this.pid);
var p = {id:this.pid, name:this.pname, ctime:new Date};
this.list.push(p);
/* 清空页面上文本框的数据 */
this.pid = "";
this.pname = "";
},
del: function(item){
/* 删除提示,如果if(true)则会执行return */
if(!confirm("确定要删除吗")){
return;
}
var index = this.list.indexOf(item); //获取此时的index值
console.log(index);
this.list.splice(index, 1);
}
}
})
```
> js要点
根据id删除数据
1. 如何根据id, 找到要删除这一项的索引
2. 如果找到索引了,直接调用数组的splice方法
```
/* 方法一some方法找到该项索引 */
this.list.some((item, i)=>{
if(item.id == id){
this.list.splice(i, 1);
//在数组的some方法中,如果return true, 就会立即终止这个数组的后续循环
return true;
}
})
```
```
/* 方法二 通过findIndex(item)找到索引 */
var index = this.list.findIndex(item=>{
if(item.id == id){
return true;
}
})
```
----
整个项目以上传至[github](https://github.com/MrXuxu/H5_demo/tree/master/Vue%E9%A1%B9%E7%9B%AE)
- 空白目录
- css实用样式
- css--下拉栏的几种设计
- css--图片阴影以及浮起的效果
- css--图片翻转二:自动翻转
- css--图片翻转一:滑过翻转
- css--三种loading特效
- css--图片遮罩效果实现
- css--又是三种loading特效
- css--带三角形的图形实现
- js demo
- 原生demo
- 1. 原生js实现轮播图
- 2. 倒计时按钮
- 3. 动态添加表格
- 4. checkbox全选反选
- 5. 小米登录方式切换
- 6. 点击事件
- 7. 个人网页导航条(二)点击滚动
- 8. 瀑布流实现!
- 9. 个人网页导航条(一)滑动固定
- 10. 定时器实现淡入淡出效果
- 11. 轮播图setTimeout版
- jQuery demo
- 1. 轮播图实现!
- 2. 成都小风车导航特效
- html组件
- html--导航栏(家居医生)
- html--登录页面(小米登录)
- html--响应式导航条(木兮地板)
- html--搜索栏
- Vue demo
- 1. mvvm实现动态添加表格
- 2. 豆瓣TOP250渲染
- 3. 制作一段跑马灯文字
- 3.1. vue 单行文字自动跑马灯效果
- 4. 利用豆瓣接口搜索书籍
- 5. 制作简易计算器
- 6. 创建一个点赞组件
- 7. 列表添加删除动画
- 8. isShow手风琴原理
- 9. tab栏切换