1.html

<input type="text" @change="specifiName($event)" />//输入框的change事件
<input type="text" @input="specifiName($event)" />//输入框的输入事件
<input type="text" @keyup.enter="specifiName($event)" />//输入框的回车事件

 

2.js

var vm = new Vue({
    el: "#app",
    methods: {
      specifiName(e) {
        var that = this;
        var val = e.target.value;
        console.log(val);
      },
    }
});

 

转载于:https://www.cnblogs.com/zhizou/p/10648513.html

Logo

前往低代码交流专区

更多推荐