vue点击事件怎么获取id
在 vue 中获取点击元素的 id 方法有:使用 ref 和 $refs使用 v-on:click 和 $event使用原生 javascript
如何在 Vue 中获取点击元素的 ID
在 Vue 中获取点击元素的 ID 有多种方法:
1. 使用 ref 和 $refs
<template><button ref="myButton">Click Me</button></template><script>export default { methods: { handleClick() { console.log(this.$refs.myButton.id); } }};</script>
2. 使用 v-on:click 和 $event
立即学习“前端免费学习笔记(深入)”;
<template><button>Click Me</button></template><script>export default { methods: { handleClick(event) { console.log(event.target.id); } }};</script>
3. 使用原生 JavaScript
<template><button>Click Me</button></template><script>export default { methods: { handleClick() { console.log(this.id); } }, mounted() { this.$el.addEventListener('click', this.handleClick); }};</script>
选择最合适的方法:
选择哪种方法取决于具体情况: