我是靠谱客的博主 乐观时光,最近开发中收集的这篇文章主要介绍vue隐性传值通过.$ref获取元素内容,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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获取元素内容所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部