我正在测试CKEditor的配置,但我无法输入,按钮是这样的:
这是在Chrome 42.0.2311.152 m(64位)上,但在Firefox和IE上也是如此。
以下是我加载CKEditor的方法:
current_address = params[:address]
destination_address = params[:destaddress]
@start_from_location_ids = nearest_by_distance(current_address, 2)
@end_to_location_ids = nearest_by_distance(destination_address, 2)
这是我的CKEditor构建的链接:link
此外,这是我尝试点击两个下拉菜单中的一个或两个可点击按钮之一时得到的结果:
这就是ckeditor.js:618:
<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>
对不起,如果我错过了什么,我不是一个非常优秀的程序员。请有人帮帮我吗?
答案 0 :(得分:4)
这个包破了!你可以通过直接转到ckeditor/samples/jquery.html
看到相同的结果。
我刚刚下载了CKEditor版本4.4.7 Standard的新软件包(来自http://ckeditor.com/download),它的工作正常。尝试做同样的事情;)