1、在配置文件ueditor.config.js中,定位 //xss过滤白名单,即,whitList:{ },对 img: 增加 “_url” 属性:
2、在下面的 video 标签后面新增3给标签,使Ueditor分别能支持embed标签和iframe标签:
代码:
source: [‘src’, ‘type’],
embed: [‘type’, ‘class’, ‘pluginspage’, ‘src’, ‘width’, ‘height’, ‘align’, ‘style’, ‘wmode’, ‘play’, ‘autoplay’,’loop’, ‘menu’, ‘allowscriptaccess’, ‘allowfullscreen’, ‘controls’, ‘preload’],
iframe: [‘src’, ‘class’, ‘height’, ‘width’, ‘max-width’, ‘max-height’, ‘align’, ‘frameborder’, ‘allowfullscreen’]
这样,在编辑器中就可以引用优酷、腾讯视频的iframe通用代码和embed html代码;移动端一般引用iframe,可设置属性,使其适应设备。