40

我的项目中有一个现有的 CK 编辑器文件夹。我怎样才能知道它的版本?是否记录在案?

4

6 回答 6

68

只需在 config.js 文件中发出如下警告,它会给出值

alert(CKEDITOR.version);

或者您可以直接在文件 ckeditor_php4.php 中查看它,例如:

var $version = '3.6.3';

工作演示:

alert(CKEDITOR.version);
console.log("CKEDITOR.version ==",CKEDITOR.version);
   <head>
                <meta charset="utf-8">
                <title>CKEditor</title>
                <script src="https://cdn.ckeditor.com/4.11.4/standard/ckeditor.js"></script>
        </head>
        <body>
                <textarea id="editor1"></textarea>
                <script>
                        CKEDITOR.replace( 'editor1' );
                </script>
        </body>

于 2013-04-16T04:42:05.640 回答
16

我检查了 3.6 版本,版本信息位于 fe 中:

/ckeditor/CHANGES.html

CKEditor Changelog

CKEditor 3.6.6.1

4.X使用mark down文件:

/ckeditor/CHANGES.md

CKEditor 4 Changelog
====================

## CKEditor 4.4.1
于 2014-06-01T18:58:47.703 回答
8
CKEDITOR.version

在控制台中运行它应该告诉你版本。

至于文档,您可以在此 URL 中找到它:

https://docs.ckeditor.com/ckeditor4/latest/api/CKEDITOR.html#property-version

于 2018-04-03T05:49:47.750 回答
5

在最新的 CKEditors 中,默认面板“?”中有一个按钮。单击它,您将看到版本号。否则,如果按钮不存在,您需要检查源文件。一开始他们肯定应该包含作者数据和版本号。

于 2013-04-08T06:51:13.187 回答
2

CKEDITOR.version将给出当前版本的 CKEDITOR

alert(CKEDITOR.version);
console.log("CKEDITOR.version ==",CKEDITOR.version);
   <head>
                <meta charset="utf-8">
                <title>CKEditor</title>
                <script src="https://cdn.ckeditor.com/4.11.4/standard/ckeditor.js"></script>
        </head>
        <body>
                <textarea id="editor1"></textarea>
                <script>
                        CKEDITOR.replace( 'editor1' );
                </script>
        </body>

于 2019-06-10T18:08:36.827 回答
1

查看ckeditor/ckeditor.js文件内部。在文件的顶部,您可以找到版本。

于 2017-09-15T11:43:43.250 回答