<p v-for="(index, item) in items">
{{ index }} {{ item.message }}
从 1.0.17 开始可以使用 of 分隔符,更接近 JavaScript 遍历器语法:
<p v-for="item of items"></p>
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title></title></head><body>
<li v-for="option in options">
<p class="text-success" v-on:click="getIndex($index)">Text:{{option.text}}--Vlue:{{option.value}}</p>
<p v-if="isNaN(click)==false">
<span>你点击的索引为: {{ click }}</span>
<p v-else>
<p class="text-danger">试着点击上方LI条目</p>
<script src="js/vue.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
new Vue({
el: 'body',
data: {
click: 'a',
options: [
{ text: '上海市', value: '20' },
{ text: '湖北省', value: '43' },
{ text: '河南省', value: '45' },
{ text: '北京市', value: '10' }
methods:{
getIndex:function($index){
this.click=$index;
</script>
</body>
</html>
3.在点击事件中取到索引
方法一:添加自定义属性
<!DOCTYPE html>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
a{display: block;}
</style>
</head>
<a v-for="(index,item) in items" data-index="{{index}}" v-on:click="onclick" href="http://www.baidu.com">{{ item.text }}</a>
<input type="text" name="" id="index" value=""/>
<script src="js/vue.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
new Vue({
el: 'body',
data: {
items: [
{ text: '巴士' },
{ text: '快车' },
{ text: '专车' },
{ text: '顺风车' },
{ text: '出租车' },
{ text: '代驾' }
methods: {
onclick:function(event){
event.preventDefault();
let target = event.target
console.log(target.getAttribute("data-index"));
document.getElementById('index').value = target.getAttribute("data-index");
</script>
</body>
</html>
方法二:直接传入索引值
示例四(和二差不多):
<!DOCTYPE html>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
a{display: block;}
</style>
</head>
<a v-for="(index,item) in items" v-on:click="onclick($index)" href="#">{{ item.text }}</a>
<input type="text" name="" id="index" value=""/><script src="js/vue.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
new Vue({
el: 'body',
data: {
items: [
{ text: '巴士' },
{ text: '快车' },
{ text: '专车' },
{ text: '顺风车' },
{ text: '出租车' },
{ text: '代驾' }
methods: {
onclick:function(index){// index.preventDefault();
console.log(index);
document.getElementById('index').value = index;
</script>
</body>
</html>
效果与方法一相同。
不过有链接时:
与取索引虽然不冲突,但是如果要对所跳的链接做进一步操作,则无法阻止跳转事件:
如果想直接传索引可以用以下方法:
<!DOCTYPE html>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
a{display: block;}
</style>
</head>
<a v-for="(index,item) in items" v-on:click="onclick($index)" href="javascript:void(0)">{{ item.text }}</a>
<input type="text" name="" id="index" value=""/>
<script src="js/vue.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
new Vue({
el: 'body',
data: {
items: [
{ text: '巴士' },
{ text: '快车' },
{ text: '专车' },
{ text: '顺风车' },
{ text: '出租车' },
{ text: '代驾' }
methods: {
onclick:function(index){
// index.preventDefault();
console.log(index);
document.getElementById('index').value = index;
window.location.href = "http://www.baidu.com";
</script>
</body>
</html>
4.关于v-for版本2.0与1.x的区别
2.0版本的示例五:
<!DOCTYPE html>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
a{display: block;}
</style>
</head>
<div id="for5">
<a v-for="(item,index) in items" v-on:click="onclick(index)" href="javascript:void(0)">{{ index }}{{ item.text }}</a>
<input type="text" name="" id="index" value=""/>
<script src="js/vue2.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
new Vue({
el: '#for5',
data: {
items: [
{ text: '巴士' },
{ text: '快车' },
{ text: '专车' },
{ text: '顺风车' },
{ text: '出租车' },
{ text: '代驾' }
methods: {
onclick:function(index){
console.log(index);
document.getElementById('index').value = index;
// window.location.href = "http://www.baidu.com";
window.location.href = "#";
</script>
</body>
</html>
变化如下:
- el处需id,写body报错;
- 参数index需写在item后面;
- 作为事件参数时不用加$符。
此外,也可以提供第二个的参数为键名:
<p v-for="(value, key) in object">
{{ key }} : {{ value }}</p>
第三个参数为索引:
<p v-for="(value, key, index) in object">
{{ index }}. {{ key }} : {{ value }}</p>
相关推荐:
2020年前端vue面试题大汇总(附答案)
vue教程推荐:2020最新的5个vue.js视频教程精选
更多编程相关知识,请访问:编程教学!!
下面Vue.js教程栏目带大家了解一下vue.js中v-for的使用及索引获取。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。2.x版本:v-for="(item,index)initems"index即索引值。==========================分割线==============================1.x版本:1.v-for 示例一:<!DOCTYPEhtml><html>...
<meta charset=utf-8>
<meta name=viewport content=initial-scale=1.0, maximum-scale=1.0, user-scalable=no />
<title></title>
</head>
<div id=didi-navigator>
<li v-for=tab>
{{ tab.text }}
1.1 使用方式: v-for=“item in arr” item是一个参数,表示数组中的每一项,arr也是一个参数,表示你要遍历的数组
1.2 使用方式: v-for="(item, index) in arr" index表示数组项的索引 ⭐
2.1 使用方式:v-for=“value in obj” value 表示对象的属性的值 obj就是需要遍历的对象
可以通过事件,把item和index传给函数,这样就能获取到idenx了,这样做的好处是我们定位一个数组元素的时候重名的时候用indexof就会获取到并不一定是我们想要的,来看element官网的一个实例
这是一个动态的可以关掉的标签,如果再添加一个标签一,如图:
如果把红色框框内的“标签一”关掉,最后我们想要的结果是:标签一,标签二,标签三
然后事实上的结果是:标签二,标签三,标签一
这是因...
<div v-for="(item,index) in arr" : key="index" @click="getIndex(item,index)">
<p>{{item}}</p>
methods:{
getIndex(item,index){
console.log(item,index)
//这里的item是点击获取当前值的每一项内容
//这里的index是点击获取当前值的下标
(1)手段:v-if是动态的向DOM树内添加或者删除DOM元素;v-show是通过设置DOM元素的display样式属性控制显隐;
(2)编译过程:v-if切换有一个局部编译/卸载的过程,切换过程中合适地销毁和重建内部的事件监听和子组件;v-show只是简单的基于css切换;
(3)编译条件:v-if是惰性的,如果初始条件为假,则什么也不做;只有在条件第一次变为真时才开始局部编译(编译被缓存?编译被缓存后,然后再切换的时候进行
<el-submenu :index="item.id+''" v-for="(item,index) in menuList" :key="item.id">
<template slot="title">
<i :class="icons[index]"></i>
<span>{{item.authName}}</span>
</template>
data() {
return {
其中,v-for 后面的 item 表示当前循环的数据项,在每次循环中会自动更新为下一个数据项;items 则是要循环的数据列表;:key="item.id" 是为了提高性能而设置的,它用于帮助 Vue.js 区分不同的列表项,避免重复渲染。{{ item }} 则是要渲染的内容,可以是任意的 HTML 或 Vue.js 模板代码。
v-for 还支持在循环中获取当前项的索引、键名、父级数据等信息,具体语法如下:
```html
<div v-for="(item, index) in items" :key="item.id">
{{ index }} - {{ item }}
<div v-for="(value, key) in object" :key="key">
{{ key }}: {{ value }}
<div v-for="item in items" :key="item.id">
<div v-for="subItem in item.subItems" :key="subItem.id">
{{ subItem }} - {{ item }}
其中,(item, index) 表示获取当前项的值和索引,(value, key) 表示获取当前项的值和键名,item.subItems 表示获取当前项的子级数据列表。在循环中使用这些语法可以更加灵活地操作数据。