1. 程式人生 > >解決百度ueditor支持iframe框架頁面的視頻播放問題

解決百度ueditor支持iframe框架頁面的視頻播放問題

ebo edi 視頻 版本 target 導致 xss title pan

新下載的ueditor 增加了xss 安全過慮,把iframe過濾了,導致發表的文章包含的視頻播放功能被限制了。

說明:新版本ueditor要修改 xss過濾白名單

修改配置文件ueditor.config.js

搜索: whitList 增加下面第二行即可

,whitList:{
iframe: [‘frameborder‘,‘border‘,‘marginwidth‘,‘marginheight‘,‘width‘,‘height‘,‘src‘,‘id‘],//增加這一行 
a:      [‘target‘, ‘href‘, ‘title‘, ‘class‘, ‘style‘],

解決百度ueditor支持iframe框架頁面的視頻播放問題