0

我第一次使用tinymce。我正在按照他们给出的示例进行操作,但它似乎不起作用。我只能看到一个带有圆角的文本框,没有工具栏和按钮。

我应该添加什么才能使其正常工作?这是代码:-

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org /TR/xhtml11            /DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr">

<head>
<script type="text/javascript" src="/js/tinymce/tinymce.min.js" ></script >
<script type="text/javascript">
tinyMCE.init({
    mode : "textareas",
    theme : "advanced",
    plugins : "emotions,spellchecker,advhr,insertdatetime,preview", 

    // Theme options - button# indicated the row# only
    theme_advanced_buttons1 : "newdocument,|,bold,italic,underline,|,justifyleft,justifycenter,justifyright,fontselect,fontsizeselect,formatselect",
    theme_advanced_buttons2 : "cut,copy,paste,|,bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,anchor,image,|,code,preview,|,forecolor,backcolor",
    theme_advanced_buttons3 : "insertdate,inserttime,|,spellchecker,advhr,,removeformat,|,sub,sup,|,charmap,emotions",      
    theme_advanced_toolbar_location : "top",
    theme_advanced_toolbar_align : "left",
    theme_advanced_statusbar_location : "bottom",
    theme_advanced_resizing : true
});
</script>

</head>

<body>
    <form>  
    <textarea name="content" cols="50" rows="15" > 
    This is some content that will be editable with TinyMCE.
    </textarea>
    </form>
</body>
</html>
4

1 回答 1

1

主页上当前下载的是版本 4,仍处于测试阶段。您问题中的文档和语法适用于版本 3.x。版本 4 是一次重大改写,许多旧语法将不再有效。

你有三个选择:

开始使用第 4 版所需的只是选择器:

tinymce.init({
    selector: "textarea"
});

这将为您提供没有插件的默认选项。如果你看看小提琴,你可以看到一些你可以做的事情。

于 2013-04-20T11:57:10.963 回答