vue获取选中的option值
获取
option
vue
选中
编程技术
发布日期
2022-11-28
更新日期
2022-11-28
阅读次数 41
文章字数 172
使用@change 监听 事件实时获取option值
@change="handleIsUsedChange($event, '参数')"
methods: {
change(event) {
var _this = this
this.currentId = event.target.value; //获取option对应的value值
console.log("你的选择是"+this.currentId)
},
}
文章作者: 朱丰华
文章链接: https://smart.52dixiaowo.com/blog/post-213.html
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。
获取
option
vue
选中
发表评论
相关推荐