美文网首页
VUE中关于select标签选中option选项

VUE中关于select标签选中option选项

作者: 梁小七 | 来源:发表于2017-08-31 16:18 被阅读0次

在select中先绑定change事件

<select name="type" id="sel" @change="changeType">
    <option value="username">username</option>
    <option value="email">email</option>
</select>

在方法中根据select的id来体现所选中的选项

methods: {
    changeType: function(){
        this.loginType = sel.options[sel.selectedIndex].value;
    }
}
要注意的是:在方法中可以直接用select中绑定的id来操作

相关文章

网友评论

      本文标题:VUE中关于select标签选中option选项

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