Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

ckeditor - How to check CK editor version

There is an existing CK editor folder in my project. How can I find out it's version? Is it documented?

question from:https://stackoverflow.com/questions/15872900/how-to-check-ck-editor-version

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

just make an alert as below in the config.js file, it gives the value

alert(CKEDITOR.version);

or you can see it directly in the file ckeditor_php4.php, for eg:

var $version = '3.6.3';

working demo :

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>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...