最近遇到个需求 项目中通过static静态资源引入了百度的UEditor富文本编辑器,需要从富文本编辑器中添加一个定制的图片选择功能 选中的图片插入到失去光标的边界处 。。。那么问题来了 在vue中需要调用static中的execCommand方法
点击确定时,把选中的插入到富文本编辑器中
废话不多说 上代码!
vue中:
window.frames['myframe'].execCommand(str)//myframe为iframe引入时的name,execCommand为需要调用的静态资源static中的方法
static中:
function execCommand(data) {
return ue.execCommand("inserthtml",data)//调用相应的UEditor的execCommand方法
}
完成!