TinyMce 4.08无法正常工作

时间:2013-10-15 01:26:29

标签: tinymce-4

当我对代码进行必要的更改时,下面提到的全功能示例似乎根本不起作用。有没有人遇到过同样的问题?

来源:http://www.tinymce.com/tryit/full.php

他们说它处于Beta阶段,但我想知道它至少应该起作用。

我正在使用TinyMCE 4.0.8而不是其他两个。尝试使用其他两个,它没有用。

P.S:我一直在使用正确的JavaScript路径。

以下是我正在使用的代码:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Email Interface</title>
<!-- Place inside the <head> of your HTML -->
<script type="text/javascript" src="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>
<p>Create an Email Message</p>
<p>&nbsp;</p>
<p>From address : 
  <input type="text" name="textfield" id="textfield" />
</p>
<p>Email Subject : 
  <input type="text" name="textfield2" id="textfield2" />
</p>
<p>&nbsp;</p>
<p>&nbsp;</p>

<!--<form method="post">
    <textarea></textarea>
</form> -->


<form method="post" action="somepage">
    <textarea name="content" style="width:100%"></textarea>
</form>

<p>&nbsp;</p>
</body>
</html>

1 个答案:

答案 0 :(得分:1)

嗯,你会在完整的样本中看到两个问题: 1- javascript来源:

<script src="//tinymce.cachefly.net/4.0/tinymce.min.js"></script>

2-您需要删除1个插件

moxiemanager

这是一份工作样本: http://jsfiddle.net/mVKVN/

如果您需要更多详细信息,请与我们联系