我在上一个版本(版本4.0b3)的项目中使用tinymce插件,当使用完整模式不起作用并且仅隐藏textarea时。但在基本版本的工作权利。我在tinymce页面中使用了示例代码,但仍然没有工作。所有补丁也是对的。
<script type="text/javascript" src="<your installation path>/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 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>
<form method="post" action="somepage">
<textarea name="content" style="width:100%"></textarea>
</form>
答案 0 :(得分:2)
您是否下载了“Moxie Manager”插件。 检查文件夹tinymce / plugins / moxiemanager,看看你是否有文件plugin.min.js
如果您没有文件或文件夹moxiemanager本身,请修改以下行
"emoticons template paste moxiemanager"
到
"emoticons template paste"
希望这有帮助