1. 程式人生 > >ckeditor原始碼編輯模式,新增style、javascript內容丟失的解決

ckeditor原始碼編輯模式,新增style、javascript內容丟失的解決

  1. 我使用ckeditor 我在編輯的使用原始碼編輯,儲存內容包含javascript、style標籤的時候,資料庫中有javascript、style標籤 ,
  2. 輸入到頁面也可以執行,但是我再次編輯的時候就不見了。新增allowedContent: true就可以了
  3. CKEDITOR.replace( 'textarea_id', { allowedContent: true});
  4. 也可以通過在config.js中新增config.allowedContent = true;實現