解决百度编辑器ueditor插入视频网址保存不了问题

问题:如下图,在百度编辑器中插入视频,视频网址可以识别,但是提交内容后视频却显示不了。

解决:这个问题主要是编辑器中会过滤一些html标签,所以可以给标签添加白名单。

修改 ueditor.config.js 文件:

修改:

img: ['src', 'alt', 'title', 'width', 'height', 'id', '_src', '_url', 'loadingclass', 'class', 'data-latex'],

在白名单后面添加:

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

修改后如下所示:

猜你喜欢

转载自www.cnblogs.com/woods1815/p/9649291.html
今日推荐