使用Bootstrap + Vue.js实现添加删除数据示例
程序员文章站
2022-06-13 17:59:03
界面首先需要引入bootstrap的css和bootstrap的js文件,还有vue.js和jquery.js才可以看见效果。
这里提供bootstrap的在线文件给大家...
界面首先需要引入bootstrap的css和bootstrap的js文件,还有vue.js和jquery.js才可以看见效果。
这里提供bootstrap的在线文件给大家引用:
<!-- 最新版本的 bootstrap 核心 css 文件 --> <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="external nofollow" integrity="sha384-bvyiisifek1dgmjrakycuhahrg32omucww7on3rydg4va+pmstsz/k68vbdejh4u" crossorigin="anonymous">
<!-- 最新的 bootstrap 核心 javascript 文件 --> <script src="https://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-tc5iqib027qvyjsmfhjomalkfuwvxzxupncja7l2mcwnipg9mgcd8wgnicpd7txa" crossorigin="anonymous"></script>
效果如下图所示,输入用户名和年龄,点击添加,数据会自动添加到下面的用户信息表内。当没有数据时,用户信息表显示:暂无数据……,当有数据时,显示 删除全部 按钮,这里为了方便快捷,我没有做删除按钮的弹出框,所以 点击删除按钮 会直接删除掉当前这条数据。
<div class="container" id="box"> <form role="form"> <div class="form-group"> <label for="username">用户名:</label> <input type="text" id="username" class="form-control" placeholder="请输入用户名" v-model="username" /> </div> <div class="form-group"> <label for="age">年龄:</label> <input type="text" id="age" class="form-control" placeholder="请输入年龄" v-model="age" /> </div> <div class="form-group"> <input type="button" value="添加" class="btn btn-primary" v-on:click="add()" /> <input type="reset" value="重置" class="btn btn-danger" /> </div> </form> <hr> <table class="table table-bordered table-hover"> <caption class="text-center">用户信息表</caption> <tr class="text-danger"> <th class="text-center">序号</th> <th class="text-center">名字</th> <th class="text-center">年龄</th> <th class="text-center">操作</th> </tr> <tr class="text-center" v-for="(item, index) in mydata"> <td>{{index+1}}</td> <td>{{item.name}}</td> <td>{{item.age}}</td> <td> <button class="btn btn-primary btn-sm" v-on:click="deletemsg()">删除</button> </td> </tr> <tr v-show="mydata.length!==0"> <td colspan="4" class="text-right"> <button class="btn btn-danger" v-on:click="all()">删除全部</button> </td> </tr> <tr v-show="mydata.length==0"> <td colspan="4" class="text-center text-muted"> <p>暂无数据……</p> </td> </tr> </table> </div>
window.onload = function(){ new vue({ el:"#box", data:{ mydata:[], username:'', age:'', nowindex:-100 }, methods:{ add:function(){ this.mydata.push({ name:this.username, age:this.age }); this.username=''; this.age=''; }, deletemsg:function(){ this.mydata.splice(0,1) }, all:function(){ this.mydata = []; } } }) }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
使用Bootstrap + Vue.js实现添加删除数据示例
-
vue.js使用v-model指令实现的数据双向绑定功能示例
-
使用Bootstrap + Vue.js实现表格的动态展示、新增和删除功能
-
vue.js使用v-model实现表单元素(input) 双向数据绑定功能示例
-
jQuery实现表单动态添加与删除数据操作示例
-
使用Bootstrap + Vue.js实现添加删除数据示例
-
vue.js使用v-model指令实现的数据双向绑定功能示例
-
vue.js使用v-model实现表单元素(input) 双向数据绑定功能示例
-
使用Bootstrap + Vue.js实现表格的动态展示、新增和删除功能
-
Bootstrap + Vue.js实现添加删除数据