最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

使用Bootstrap和Vue实现用户信息的编辑删除功能

来源:懂视网 责编:小采 时间:2020-11-27 22:26:57
文档

使用Bootstrap和Vue实现用户信息的编辑删除功能

使用Bootstrap和Vue实现用户信息的编辑删除功能:使用Bootstrap实现简单的布局,并结合Vue进行用户信息的编辑删除等功能,代码如下 <!DOCTYPE html> <html> <head> <meta charset=utf-8> <title>用户信息编辑</title> <lin
推荐度:
导读使用Bootstrap和Vue实现用户信息的编辑删除功能:使用Bootstrap实现简单的布局,并结合Vue进行用户信息的编辑删除等功能,代码如下 <!DOCTYPE html> <html> <head> <meta charset=utf-8> <title>用户信息编辑</title> <lin

使用Bootstrap实现简单的布局,并结合Vue进行用户信息的编辑删除等功能,代码如下

<!DOCTYPE html>
<html>
<head>
 <meta charset="utf-8">
 <title>用户信息编辑</title>
 <link rel="stylesheet" type="text/css" href="bootstrap.min.css" rel="external nofollow" >
 <script type="text/javascript" src="jquery.js"></script>
 <script type="text/javascript" src="bootstrap.js"></script>
 <script type="text/javascript" src="vue.js"></script>
</head>
<body>
 <div class="container">
 <form role="form">
 <div class="form-group">
 <label for="username">用户名</label>
 <input type="text" name="username" class="form-control" placeholder="请输入用户名" v-model="username">
 </div>
 <div class="form-group">
 <label for="password">密码</label>
 <input type="password" name="password" class="form-control" placeholder="请输入密码" v-model="password">
 </div>
 <div class="form-group">
 <button type="button" class="btn btn-primary" @click="add()">添加</button>
 <button type="reset" class="btn btn-danger">重置</button>
 </div>
 </form>
 <hr>
 <table class="table table-bordered table-hover">
 <caption class="h3 text-info">用户信息</caption>
 <tr>
 <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 in myData">
 <td>{{$index+1}}</td>
 <td>{{item.name}}</td>
 <td>{{item.password}}</td>
 <td>
 <button class="btn btn-danger" data-toggle="modal" data-target="#myModal" @click="nowIndex=$index">删除</button>
 </td>
 </tr>
 <tr v-show="myData.length!=0">
 <td colspan="4" class="text-center">
 <button class="btn btn-danger" data-toggle="modal" data-target="#myModal" @click="nowIndex=-2">删除全部</button>
 </td>
 </tr>
 <tr v-show="myData.length==0">
 <td colspan="4" class="text-center">
 <h5 class="text-muted">暂无信息...</h5>
 </td>
 </tr>
 </table>
 <!-- 模态框 -->
 <div class="modal fade" id="myModal" role="dialog" tabindex="-1">
 <div class="modal-dialog">
 <div class="modal-content">
 <div class="modal-header">
 <button type="button" class="close" data-dismiss="modal"><span>×</span></button>
 <h4 class="modal-title text-danger">警告!</h4>
 </div>
 <div class="modal-body">
 <h4 class="text-center">确认删除?</h4>
 </div>
 <div class="modal-footer">
 <button type="button" data-dismiss="modal" class="btn btn-primary">取消</button>
 <button type="button" data-dismiss="modal" class="btn btn-danger" @click="deleteMsg(nowIndex)">确认</button>
 </div>
 </div>
 </div>
 </div>
 </div>
<script type="text/javascript">
 new Vue({
 el: ".container",
 data: {
 myData:[],
 username:"",
 password:"",
 nowIndex:-100
 },
 methods:{
 add:function(){
 this.myData.push({
 name:this.username,
 password:this.password
 });
 this.username="";
 this.password="";
 },
 deleteMsg:function(n){
 if(n==-2){
 this.myData=[];
 }else{
 this.myData.splice(n,1);
 }
 }
 }
 });
</script>
</body>
</html>

实现效果如下,因为只是简单的实现编辑删除的功能,因此密码就直接显示在表格中,没有进行加密显示

整体布局界面


这是整体布局界面

用户信息编辑后添加

用户信息编辑后添加

删除数据

删除数据

总结

以上所述是小编给大家介绍的使用Bootstrap和Vue实现用户信息的编辑删除功能,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

文档

使用Bootstrap和Vue实现用户信息的编辑删除功能

使用Bootstrap和Vue实现用户信息的编辑删除功能:使用Bootstrap实现简单的布局,并结合Vue进行用户信息的编辑删除等功能,代码如下 <!DOCTYPE html> <html> <head> <meta charset=utf-8> <title>用户信息编辑</title> <lin
推荐度:
标签: 删除 使用 VUE
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top