解决百度富文本编辑器无法上传视频的问题

本文转自:http://blog.csdn.net/qq_34787830/article/details/75092347

1、在配置文件ueditor.config.js中,定位 //xss过滤白名单,即,whitList:{ },对 img: 增加 “_url” 属性: 


2、在下面的 video 标签后面新增3给标签,使Ueditor分别能支持embed标签和iframe标签:


  增加的代码如下:(记得在在video这行的最后加上逗号,不然会报错)

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']


本文转自:http://blog.csdn.net/qq_34787830/article/details/75092347

1、在配置文件ueditor.config.js中,定位 //xss过滤白名单,即,whitList:{ },对 img: 增加 “_url” 属性: 


2、在下面的 video 标签后面新增3给标签,使Ueditor分别能支持embed标签和iframe标签:


  增加的代码如下:(记得在在video这行的最后加上逗号,不然会报错)

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']


猜你喜欢

转载自blog.csdn.net/freezingxu/article/details/77934404
今日推荐