-1
我喜歡在ckeditor中爲圖像添加地圖。我使用4.2版本的標準軟件包,如果我在源代碼區執行此操作,那麼我將完全正常。我面臨的問題是它完全刪除了地圖代碼。有誰知道我可以告訴ckeditor保留我的標籤?獲取ckeditor在源代碼中保留圖像地圖
我發現老版本的How to insert image/area map into picture from CKEDITOR 3.0。也許那裏存在一個插件?
我喜歡在ckeditor中爲圖像添加地圖。我使用4.2版本的標準軟件包,如果我在源代碼區執行此操作,那麼我將完全正常。我面臨的問題是它完全刪除了地圖代碼。有誰知道我可以告訴ckeditor保留我的標籤?獲取ckeditor在源代碼中保留圖像地圖
我發現老版本的How to insert image/area map into picture from CKEDITOR 3.0。也許那裏存在一個插件?
我發現配置參數,如果你設置allowedContent: true
那麼標籤過濾器關閉。
實施例:
CKEDITOR.replace('myTextarea', {
allowedContent: true,
});