程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> 解決ckeditor html不顯示,ckeditor 自動過濾html問題

解決ckeditor html不顯示,ckeditor 自動過濾html問題

編輯:PHP綜合

ckeditor html不顯示,ckeditor 自動過濾html

項目裡面用CKeditor來編輯合同模板,模板中有Html樣式,有div,但一保存就會自動去掉,需要做以下設置:

// editorIndicates whether the contents to be edited are being input as a full HTML page.
// A full page includes the <html>, <head>, and <body> elements.
// The final output will also reflect this setting, including the <body> contents only if this setting is disabled.
config.fullPage= true;

// set editor html no display auto filter
config.allowedContent= true;
*
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved