TinyMCE:启用单个按钮

时间:2010-08-23 09:01:46

标签: javascript html tinymce text-editor

我可以添加个别按钮吗?

我想给用户控制,但不要太多控制,所以我需要启用一些按钮但禁用其他按钮。

可以这样做吗?

1 个答案:

答案 0 :(得分:0)

我现在已经弄明白了。

你必须使用一个主题。我使用了预定义的主题,我在init函数中完成了这个:

tinyMCE.init({
    theme : "advanced",
    mode: "exact",
    elements : "elm1",
    theme_advanced_toolbar_location : "top",
    theme_advanced_buttons1 : "bold,italic,underline,separator,"
        + "formatselect,bullist,numlist,link,unlink,image,separator,"
            +"undo,redo,cleanup,code,separator,charmap",
    theme_advanced_buttons2 : "",
    theme_advanced_buttons3 : "",
});

您将textarea命名为elm1,然后将其命名为