Vue.js get selected option on @change

前端 未结 5 1723
被撕碎了的回忆
被撕碎了的回忆 2020-11-27 12:28

First, i want to say that im new to Vue, and this is my first project ever using Vue. I have combobox and I want to do something different based on the selected combobox. I

相关标签:
5条回答
  • 2020-11-27 12:54

    @ is a shortcut option for v-on. Use @ only when you want to execute some Vue methods. As you are not executing Vue methods, instead you are calling javascript function, you need to use onchange attribute to call javascript function

    <select name="LeaveType" onchange="onChange(this.value)" class="form-control">
     <option value="1">Annual Leave/ Off-Day</option>
     <option value="2">On Demand Leave</option>
    </select>
    
    function onChange(value) {
      console.log(value);
    }
    

    If you want to call Vue methods, do it like this-

    <select name="LeaveType" @change="onChange($event)" class="form-control">
     <option value="1">Annual Leave/ Off-Day</option>
     <option value="2">On Demand Leave</option>
    </select>
    
    new Vue({
      ...
      ...
      methods:{
        onChange:function(event){
           console.log(event.target.value);
        }
      }
    })
    

    You can use v-model data attribute on the select element to bind the value.

    <select v-model="selectedValue" name="LeaveType" onchange="onChange(this.value)" class="form-control">
     <option value="1">Annual Leave/ Off-Day</option>
     <option value="2">On Demand Leave</option>
    </select>
    
    new Vue({
        data:{
            selectedValue : 1, // First option will be selected by default
        },
        ...
        ...
        methods:{
            onChange:function(event){
                console.log(this.selectedValue);
            }
        }
    })
    

    Hope this Helps :-)

    0 讨论(0)
  • 2020-11-27 13:01

    You can also use v-model for the rescue

    <template>
        <select name="LeaveType" v-model="leaveType" @change="onChange()" class="form-control">
             <option value="1">Annual Leave/ Off-Day</option>
             <option value="2">On Demand Leave</option>
        </select>
    </template>
    
    <script>
    export default {
        data() {
            return {
                leaveType: '',
            }
        },
    
        methods: {
            onChange() {
                console.log('The new value is: ', this.leaveType)
            }
        }
    }
    </script>
    
    0 讨论(0)
  • 2020-11-27 13:09

    The changed value will be in event.target.value

    const app = new Vue({
      el: "#app",
      data: function() {
        return {
          message: "Vue"
        }
      },
      methods: {
        onChange(event) {
          console.log(event.target.value);
        }
      }
    })
    <script src="https://cdn.jsdelivr.net/npm/vue@2.5.16/dist/vue.js"></script>
    <div id="app">
      <select name="LeaveType" @change="onChange" class="form-control">
       <option value="1">Annual Leave/ Off-Day</option>
       <option value="2">On Demand Leave</option>
    </select>
    </div>

    0 讨论(0)
  • 2020-11-27 13:09

    You can save your @change="onChange()" an use watchers. Vue computes and watches, it´s designed for that. In case you only need the value and not other complex Event atributes.

    Something like:

      ...
      watch: {
        leaveType () {
          this.whateverMethod(this.leaveType)
        }
      },
      methods: {
         onChange() {
             console.log('The new value is: ', this.leaveType)
         }
      }
    
    0 讨论(0)
  • 2020-11-27 13:15

    Use v-model to bind the value of selected option's value. Here is an example.

    <select name="LeaveType" @change="onChange($event)" class="form-control" v-model="key">
       <option value="1">Annual Leave/ Off-Day</option>
       <option value="2">On Demand Leave</option>
    </select>
    <script>
    var vm = new Vue({
        data: {
            key: ""
        },
        methods: {
            onChange(event) {
                console.log(event.target.value)
            }
        }
    }
    </script>
    

    More reference can been seen from here.

    0 讨论(0)
提交回复
热议问题