vue div中使用v-for循环,显示每个对象的姓名,类似item.name,给item.name所在的div绑定click事件,点击item.name如何准确的定位鼠标所在位置
时间: 2024-02-18 11:00:48 浏览: 74
在Vue的v-for循环中,可以通过v-on指令来绑定click事件,并且使用$event对象来获取鼠标点击的位置。具体的代码如下:
```html
<template>
<div>
<div v-for="(item, index) in itemList" :key="index" @click="handleClick($event)">
{{ item.name }}
</div>
</div>
</template>
<script>
export default {
data() {
return {
itemList: [
{ name: '张三' },
{ name: '李四' },
{ name: '王五' }
]
}
},
methods: {
handleClick(event) {
const x = event.clientX
const y = event.clientY
console.log(`鼠标点击的位置:(${x}, ${y})`)
}
}
}
</script>
```
在上面的代码中,我们使用v-for循环来显示每个对象的姓名,并且给每个div绑定了click事件。在click事件中,我们通过$event对象获取鼠标点击的位置,并且输出到控制台中。
相关问题
vue v-for循环某一数组,div中显示循环的每一个对象的name值,例如item.name,循环出的item.name横向排列,点击第一个item.name时会使用v-show展开对应的div,例如item.name流程,只有再次点击此item.name v-show展开的div才会收起,若点击其他的item.name,例如第二个item.name则会展示出第二个item.name所对应的div
好的,针对您的问题,我可以给您提供一个示例代码,供您参考:
```html
<template>
<div>
<div v-for="(item, index) in items" :key="index">
<div @click="toggle(index)">
{{ item.name }}
</div>
<div v-show="activeIndex === index">
{{ item.content }}
</div>
</div>
</div>
</template>
<script>
export default {
data() {
return {
items: [
{
name: 'item1',
content: 'content1'
},
{
name: 'item2',
content: 'content2'
},
{
name: 'item3',
content: 'content3'
}
],
activeIndex: -1
}
},
methods: {
toggle(index) {
if (this.activeIndex === index) {
this.activeIndex = -1
} else {
this.activeIndex = index
}
}
}
}
</script>
```
在这个示例代码中,我们使用了`v-for`指令来循环展示数组中的每个对象,在每个对象中我们使用了一个`div`元素来展示`item.name`的值,并且为这个`div`元素绑定了一个`click`事件。在点击事件的处理函数中,我们会根据当前点击的`item`的索引值来判断是否展开当前`item`对应的`div`元素。我们使用了一个`activeIndex`变量来记录当前展开的`item`的索引值,如果`activeIndex`等于当前点击的`item`的索引值,则说明当前`item`对应的`div`元素已经展开了,我们需要将`activeIndex`设置为`-1`来收起这个`item`对应的`div`元素;否则,我们需要将`activeIndex`设置为当前点击的`item`的索引值来展开这个`item`对应的`div`元素。同时,我们使用了`v-show`指令来控制`div`元素的显示和隐藏。
vue v-for循环某一数组,div中显示循环的每一个对象的name值,例如item.name,循环的item.name横向排列,若超出指定的宽度则自动换行,第一行与第二行之间的间距margin-bottom为30px点击item.name时会使用v-show展示对应的div,例如item.name流程;点击第一行item.name时,v-show展示的divmargin-bottom变为80px,再次点击item.name时会变回30px,如何控制点击第一行item.name时,第二行的margin-bottom还是为30px
你可以使用一个变量来控制第一行被点击时的margin-bottom的值,例如定义一个变量`isFirstRowClicked`,初始值为`false`。当第一行被点击时,将该变量设置为`true`,同时将第一行对应的div的margin-bottom设置为80px。当再次点击第一行时,将该变量设置为`false`,同时将第一行对应的div的margin-bottom设置为30px。在第二行对应的div中,使用`v-bind:style`绑定一个样式对象,利用三元表达式来判断当前第一行是否被点击,若是,则设置margin-top为80px,否则为30px。
下面是示例代码:
```html
<template>
<div>
<div v-for="(item, index) in itemList" :key="index" @click="handleClick(index)">
{{ item.name }}
</div>
<div v-for="(item, index) in itemList" :key="'div'+index" v-show="isShow[index]" :style="{ marginTop: index === 0 && isFirstRowClicked ? '80px' : '30px' }">
{{ item.name }}流程
</div>
</div>
</template>
<script>
export default {
data() {
return {
itemList: [
{ name: 'item1' },
{ name: 'item2' },
{ name: 'item3' },
{ name: 'item4' },
{ name: 'item5' },
{ name: 'item6' },
{ name: 'item7' },
{ name: 'item8' },
{ name: 'item9' },
{ name: 'item10' }
],
isShow: [],
isFirstRowClicked: false
};
},
methods: {
handleClick(index) {
this.isShow[index] = !this.isShow[index];
if (index === 0) {
this.isFirstRowClicked = !this.isFirstRowClicked;
}
}
},
created() {
this.isShow = new Array(this.itemList.length).fill(false);
}
};
</script>
```
阅读全文