vue怎么使用v-html来实现双向数据绑定的功能呢?
contenteditable是html5 的新功能,contenteditable 属性规定元素内容是否可编辑。所有主流浏览器都支持 都是支持的可以放心使用 <div contenteditable="true" class="multiplyAnswers" v-html="fillanswer" @input=&qu
·
contenteditable是html5 的新功能,contenteditable 属性规定元素内容是否可编辑。
所有主流浏览器都支持 都是支持的可以放心使用
<div contenteditable="true" class="multiplyAnswers" v-html="fillanswer" @input="fillanswer=$event.target.innerHTML" ></div>
更多推荐
已为社区贡献55条内容
所有评论(0)