美文网首页
2018-09-12 vue第二课(v-model(双向数据绑定

2018-09-12 vue第二课(v-model(双向数据绑定

作者: LYH2312 | 来源:发表于2018-09-13 19:06 被阅读0次

1.v-model(双向数据绑定)=>主要用于表单元素

<div id="id">
        百度<input v-model="msg"></input>
        <P>小度{{msg}}</P>
    </div>
    <script src="vue.js"></script>
    <script>
        new Vue({
            el:'#id',
            data:{
                msg:''//双向数据绑定,可为空值
            }
        })
    </script>

2.v-on绑定事件

v-on:事件=“函数名”
methods:{//存放函数(是一个方法)}

<div id='itany'>
    <button v-on:click='alt'>点击</button>
    <p>{{msg}}</p>
</div>


    <script src="vue.js"></script>
    <script>
        var vm=new Vue({
            el:'#itany',
            data:{
                msg:'hello vue',
                mas:'HELLO WORD'
            },
            methods:{//存放函数(方法)
                alt:function(){
//                  console.log(this.msg)
                    console.log(vm.msg)//打印
                    this.msg=this.mas
                }
            }
        })

    </script>

3.添加和删除

push()给数组末尾添加新元素;

pop()始终删除数组最后一个元素;

unshift()给数组开头添加一个元素;

shift()始终删除数组开头的元素;

splice()从数组中删除元素;

splice(index,n)=>(下标,个数)

     <div id="new">
        <input v-model="a">
        <button v-on:click="fun">添加</button>
        <ul>
            <Li v-for="(val,index) in arr">{{val}}<button v-on:click="fun1(index)">删除</button></Li>
        </ul>
    </div>
    <script src="vue.js"></script>


<script>
    new Vue({
        el:"#new",
        data:{
            arr:["啥","玩","意"],
            a:""

        },
        methods:{
            fun:function(){
            this.arr.push(this.a)
            },
            fun1:function(ind){
                this.arr.splice(ind,1)
            }
        }
    })
</script>

4.添加删除用户

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        .form-group{
            margin: 0 auto;
            margin-top: 20px;
            text-align: center;
        }
        .form-group input {
            width: 800px;
            height: 50px;
        }
        .btn-success{
            margin-top: 20px;
            margin-left:400px ;
            width: 100px;
            height: 60px;
            border-radius:5px ;
        }
        .btn-new{
            margin-top: 20px;
            margin-left:400px ;
            width: 100px;
            height: 60px;
            border-radius:5px ;
        }
        .table-bordered{
            margin-left: 600px;
            text-align: center;
        }
        .border{
            width: 400px;
            height: 200px;
        }
    </style>
</head>

<body>
<script src="vue.js"></script>

    <div id="app">
                     <div class="form-group">
                         <label for="group">姓名</label>
                         <input type="text" placeholder="你的姓名" v-model="person1.name">
                    </div>
                     <div class="form-group">
                         <label for="author">年龄</label>
                         <input type="text"  placeholder="你的年龄" v-model="person1.num">
                     </div>
                     <div class="form-group">
                         <label for="price">邮箱</label>
                         <input type="text" placeholder="你的邮箱"  v-model="person1.score">
                     </div>
                        <button class="btn btn-success" v-on:click="addPerson()">添加</button>
                         <button class="btn btn-new" ><a href="">重置</a></button>
                    <table class="table table-bordered" border="1">
                         <thead class="border">
                             <tr>
                                 <th>编号</th>
                                 <th>姓名</th>
                                 <th>年龄</th>
                                 <th>邮箱</th>
                                 <th>操作</th>
                           </tr>
                         </thead>
                        <tbody>
                            <tr  v-for="(person,index) in people">
                                <td>{{index+1}}</td>
                                <td>{{person.name}}</td>
                                <td>{{person.num}}</td>
                                <td>{{person.score}}</td>
                                <td><buton  class="btn btn-warning" @click="delPerson(person)">删除</buton></td>
                            </tr>
                         </tbody>
                     </table>
                 </div>


<script>
             var vm=new Vue({
                 el:'#app',
                       data:{
                         person1:{

                                   name: '',
                                          num: '',
                                          score: ''
                            },
                      people:[{
                                name: '张三',
                                   num: '12',
                                    score: 'tom@126.com'
                       },
                         {
                                 name: '李四',
                                     num: '15',
                                       score: 'tom@126.com7'
                         },
                         {
                                name: '王二',
                        num: '18',
                                        score: 'tom@126.com'
                           },
                         ]
                    },
                //在methods中定义方法
               methods:{
                        //新增成员信息
                       addPerson: function () {
                                  this.person1.id=this.people.length+1;
                               this.people.push(this.person1);
                               this.person1={};
                            },
                        //删除成员信息
                     delPerson: function(person){
                                this.people.splice(this.people.indexOf(person),1);
                            }
                     }
            })

</script>
</body>
</html>

相关文章

  • vue双向数据绑定原理

    vue中通过v-model进行一个双向数据绑定。 双向数据绑定的原理是什么? Vue内部通过Object.defi...

  • Vue 实例 一

    Vue实例基础一 数据的双向绑定 v-model 绑定表单的相应事件,和数据实现动态的双向绑定,需要在Vue实例中...

  • vue 自定义v-model 封装地址选择组件,并实现数据绑定和

    vue 自定义v-model 封装地址选择组件,并实现数据绑定和表单验证 vue是双向数据绑定的,v-model可...

  • Vue基础指令

    Vue循环指令 Vue绑定指令: v-bind:style,v-bind:class: v-model双向数据绑定...

  • 2018-09-12/13

    2018-09-12 v-model:双向数据绑定,用于表单元素。 屏幕展示:1.png v-on:事件名="函数...

  • 2018-09-14 vue.js

    vue.js v-model v-on: 1. v-model='' 双向数据绑定 在给

  • vue第二天总结

    一,v-model v-model:双向数据绑定 用于表单元素 {{msg}} new Vue({el:"...

  • vue经典面试题

    vue经典面试题 vue指令中,双向数据绑定是哪个指令,请说出其原理? v-model 是数据双向绑定是通过数据劫...

  • vue.js 笔记

    v-for(循环) //html //vue.js v-model(双向数据绑定) //html //vue.js...

  • vue学习-基础,事件和数据交互

    vue数据双向绑定(v-model)原理? vue指令 v-text === {{}} {{}} 页面会显示变量...

网友评论

      本文标题:2018-09-12 vue第二课(v-model(双向数据绑定

      本文链接:https://www.haomeiwen.com/subject/selbgftx.html