当我在CKEditor中发布图像时,该链接将在实际URL的开始之前添加服务器根地址。为什么会这样表现,我该如何解决?

谢谢你。

错误示例:



这是html格式的样子

<img id="\&quot;headerImage" campaign-icon\"="" mc:allowdesigner="\&quot;\&quot;" mc:allowtext="\&quot;\&quot;" mc:edit="\&quot;header_image\&quot;" mc:label="\&quot;header_image\&quot;" src="\&quot;http://gallery.mailchimp.com/653153ae841fd11de66ad181a/images/placeholder_600.gif\&quot;" style="\&quot;max-width:600px;\&quot;">

最佳答案

您应该在CKEditor上调试image.js插件。

在其上查找“onOk”事件,并尝试了解发生了什么。当您单击工具栏上的图像按钮时显示的图像模块上的“确定”按钮时,将触发onOk事件。

可能在那里,您会找到问题的答案。

那就是我的image.js:http://pastebin.com/ApQb4d5Z

关于php - CKEditor会将根添加到我的图像链接中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9767712/

10-12 22:08