ckeditor不会在法语浏览器上工作

时间:2017-01-18 20:56:49

标签: ckeditor

我刚刚在我的服务器上安装了ckeditor,但是wysiwyg编辑器并没有替换textarea。它是基本的东西,我不明白为什么。

编辑:显然,问题与浏览器的语言有关。英语brwoser还可以,法语不是!有什么想法?

这是我的页面:http://cliniquelactuel.com/testckeditor/samples/

以下是代码:

<html>
    <head>
        <meta charset="utf-8">
        <title>CKEditor Sample</title>
        <script src="http://cliniquelactuel.com/testckeditor/ckeditor.js"></script>
    </head>

    <body id="main">
        <form>
            <textarea name="editor1" id="editor1" rows="10" cols="80">
                This is my textarea to be replaced with CKEditor.
            </textarea>
            <script>
            CKEDITOR.replace('editor1');
            </script>
        </form>
    </body>
</html>

感谢。

0 个答案:

没有答案