1. 程式人生 > >解決百度ueditor富文字編輯器不能插入視訊的問題/src掉鏈/src清空,不能顯示視訊

解決百度ueditor富文字編輯器不能插入視訊的問題/src掉鏈/src清空,不能顯示視訊

1.

直接下載到的百度富文字編輯器當插入優酷/騰訊視訊的時候會自動清掉src,不顯示視訊

    造成這樣的原因是:

  百度富文字編輯器的過濾器xssFilter導致插入視訊異常,編輯器在切換原始碼的過程中過濾掉img的_url屬性(用來儲存視訊url)

解決辦法:

1.

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