vue实现在v-html的html字符串中绑定事件
时间:2021-04-10 08:50:55|栏目:vue|点击: 次
需求:
需要在v-html的html字符串的button中绑定点击事件,需要点击后做一些操作,必须渲染成html,但是渲染后的html里面写绑定事件的代码没有经过vue编译,所以事件无效。
<div class="code-review"> <div v-html="html" v-highlight @click="addComment($event)"></div> </div> computed: { html () { return '<button></button >' }, },
解决办法:
在v-html同级元素中使用事件绑定,然后根据事件触发的目标对象去判断和获取参数。
addComment:function (event) { if(event.target.nodeName === 'BUTTON'){ // 获取触发事件对象的属性 alert("a"); } },
上一篇:Vue 中 filter 与 computed 的区别与用法解析
栏 目:vue
本文标题:vue实现在v-html的html字符串中绑定事件
本文地址:http://www.codeinn.net/misctech/98157.html