理想天空
理想天空
  • 发布:2020-10-11 11:14
  • 更新:2020-10-11 11:14
  • 阅读:486

v-html 里的控件遍历问题

分类:uni-app
Vue

我在代码里加了 ref
<text class="example-info" ref='pcontent' v-html="cpages.content"></text>
代码里
let a = this.$refs.pcontent;
console.log(a.$children.length);
for(let i=0; i< a.$children.length; i++)
{
if(a.$children[i].nodeName == "#text")
{
Voice(a.$children[i].data);
}
}

因为我的app是在苹果的,$el好像不支持
现在问题是$children好像取不到v-html里面的东西

2020-10-11 11:14 负责人:无 分享
已邀请:

该问题目前已经被锁定, 无法添加新回复