CKEditor图标已损坏

时间:2014-02-22 19:07:39

标签: javascript html ckeditor

我正在尝试迁移到ckeditor 4.3.2。全包

如果直接通过浏览器查看示例页面“ckeditor / samples / replacebyclass.html”:

file:///Z:/home/mysite/public_html/ckeditor/samples/replacebyclass.html

一切都是正确的。

但当这个页面由WAMP输出时:

http://mysite/ckeditor/samples/replacebyclass.html

工具栏中的每个图标都被移动或遗漏(screenshot

有人有任何想法吗?

1 个答案:

答案 0 :(得分:0)

问题出现在moono / icons.png的浏览器缓存中 此文件的Previuos版本已缓存。 我强迫浏览器重新加载文件,现在它可以工作。

最后我写了这段代码以避免将来出现这样的问题:

try {
    var _img = new Image();
    _img.src = "/ckeditor/skins/moono/icons.png";//preload fresh copy of icons
    _img.onload = function() {
    $( 'textarea' ).ckeditor();};
} catch (e) { }