vuejs 获取input的值

2020-03-10  本文已影响0人  younglaker

使用 refv-modelfunction(e)

<input type="text" value="调试 vuejs 2.0" ref="input1">
 <button   v-on:click="test1">测试</button>

<input type="text" v-model="input2">
<button  v-on:click="test2">测试</button>

// @input 输入事件,实时监听
<input type="text" @input="test3" /> 

methods: {
    test1: function () {
        console.log( this.$refs.input1.value ); 
    },

    test2: function () {
        console.log( this.input2 );
    },

    test3(e){
      //e.target 指向了dom元素
      console.log( e.target.value ); 
    }
}
上一篇 下一篇

猜你喜欢

热点阅读