2016-07-01 153 views

回答

1

您可以嘗試在CKEditor編輯器事件中添加javascript方法,然後在其中編碼URL。喜歡這個。

CKEDITOR.instances['EDITOR_CK'].on('contentDom', function() { 
    this.document.on('click', function(event){ 
     var uri = "test.aspx?id=abc"; 
     var res = encodeURI(uri); 
     //then set this encoded url in the editor. 
    }); 
}); 
+0

但後來我發送電子郵件給某人ckeditor內容,那麼我怎麼能先解密在URL中顯示圖像? –

+0

不明白你的問題,請詳細說明 –

+0

我發送一封電子郵件給用戶,無論他/她在ckeditor中插入html作爲電子郵件正文。 但我不希望任何用戶看到我的完整圖像網址.. –

相關問題