TinyMCE的Textarea(富文本编辑器库)没有显示任何内容

时间:2013-08-12 18:40:20

标签: javascript html tinymce

我对如何误用TinyMCE感到很困惑。 首先我从http://www.tinymce.com/download/download.php下载它我选择了TinyMCE 4.0.3。 完成下载后,我有文件夹tinymce_4.0.3,它有像tinymce_4.0.3 \ tinymce \ js \ tinymce这样的文件夹,然后我将这个文件夹(js / tinymce)复制到我的网站mywebsite文件夹中。

Atlast我使用这样的代码创建test.php文件(我来自http://www.tinymce.com/tryit/full.php

<html>
<head>
<script type="text/javascript" src="js/tinymce/tinymce.min.js"></script>
<script type="text/javascript">
tinymce.init({
    selector: "textarea",
    theme: "modern",
    plugins: [
        "advlist autolink lists link image charmap print preview hr anchor pagebreak",
        "searchreplace wordcount visualblocks visualchars code fullscreen",
        "insertdatetime media nonbreaking save table contextmenu directionality",
        "emoticons template paste textcolor moxiemanager"
    ],
    toolbar1: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image",
    toolbar2: "print preview media | forecolor backcolor emoticons",
    image_advtab: true,
    templates: [
        {title: 'Test template 1', content: 'Test 1'},
        {title: 'Test template 2', content: 'Test 2'}
    ]
});
</script>
</head>
<body>
<form method="post" action="somepage">
    <textarea name="content" style="width:100%"></textarea>
</form>
</body>
</html>

但是当我打开url localhost / mysite / test.php时没什么显示的。 有没有人弄清楚我发生了什么问题?

非常感谢。

1 个答案:

答案 0 :(得分:0)

哦,我发现问题是因为缺少插件。 以下代码来自TinyMCE网站,最后一个插件moxiemanager不在包免费下载,为什么上面的代码无法显示任何内容。

plugins: [
    "advlist autolink lists link image charmap print preview hr anchor pagebreak",
    "searchreplace wordcount visualblocks visualchars code fullscreen",
    "insertdatetime media nonbreaking save table contextmenu directionality",
    "emoticons template paste textcolor moxiemanager"
],

解决问题只是删除moxiemanager。

谢谢大家。