CKEditor 不工作(灰色按钮)

CKEditor not working (grayed buttons)

我正在测试 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: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||

抱歉,如果我遗漏了什么,我不是一个很好的程序员。有人可以帮帮我吗?

这个包坏了!您可以直接转到 ckeditor/samples/jquery.html - 结果相同。

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