📜  javascript 事件对象中的选择值在哪里 - Javascript 代码示例
📅  最后修改于: 2022-03-11 15:01:41.430000             🧑  作者: Mango
代码示例1
let handleSelect = (e) => { // e === this
console.log(event.target.value) // event !== this
}