我在代码里加了 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里面的东西
0 个回复