概述
1.span标签里的内容是在接口里获取到的值,我需要拿到但是不能显示(所以display:none)
设置ref
<ul class="name_list">
<li v-for="(name,index) in listmsg" :key="index" ref="namemsg" @click="selectname(index)" :class="{active:currentIndex===index}">{{name.name}} <span ref="nomsg" style="display: none;">{{name.no}}</span></li>
</ul>
2.当我点击li标签的时候需要获取到li标签里的内容用来请求接口
获取ref
selectname(index) {
this.namemsg = this.$refs.namemsg[index].innerText
this.nomsg = this.$refs.nomsg[index].innerText
},
最后
以上就是乐观时光为你收集整理的vue隐性传值通过.$ref获取元素内容的全部内容,希望文章能够帮你解决vue隐性传值通过.$ref获取元素内容所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复