📌  相关文章
📜  目标数据选项选择 vue js - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:34.335000             🧑  作者: Mango

代码示例2
methods: {
    handleChange(e) {
        if(e.target.options.selectedIndex > -1) {
            console.log(e.target.options[e.target.options.selectedIndex].dataset.foo)
        }
    }
}