1

我正在测试 CKEditor 的配置,但我无法输入,按钮如下所示:

灰色按钮

这是在 Chrome 42.0.2311.152 m(64 位)上,但在 Firefox 和 IE 上也是如此。

这是我加载CKEditor的方式:

<html>
<head>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
    <script src="ckeditor.js"></script> 
</head>
<body>
    <textarea id="teste"></textarea>
    <script>
        CKEDITOR.replace('teste');
    </script>
</body>
</html>

这是我的 CKEditor 构建的链接:link

此外,这是我在尝试单击两个下拉菜单之一或两个可单击按钮之一时得到的结果:

错误

这是 ckeditor.js:618 行:

showBlock:function(a,b,c,i,f,h){var j=this._.panel,l=j.showBlock(a);this.allowBlur(!1);a=this._.editor.editable();this._.returnFocus=a.hasFocus?a:new CKEDITOR.dom.element(CKEDITOR.document.$.activeElement);this._.hideTimeout=0;var d=this.element,a=this._.iframe,a=CKEDITOR.env.ie?a:new CKEDITOR.dom.window(a.$.contentWindow),g=d.getDocument(),o=this._.parentElement.getPositionedAncestor(),p=b.getDocumentPosition(g),g=o?o.getDocumentPosition(g):{x:0,y:0},m="rtl"==this._.dir,e=p.x+(i||0)-g.x,k=p.y+(f||

对不起,如果我错过了什么,我不是一个很好的程序员。有人能帮助我吗?

4

1 回答 1

4

这个包坏了!您可以通过直接转到ckeditor/samples/jquery.html- 相同的结果来看到这一点。

我刚刚下载了 CKEditor 版本 4.4.7 Standard 的新包(来自http://ckeditor.com/download),它运行良好。尝试做同样的事情;)

于 2015-05-20T18:17:11.407 回答