将HTML模板插入tinymce 4编辑器

时间:2013-12-18 00:42:19

标签: javascript html templates tinymce-4

我一边有HTML模板。另一方面,我有TinyMce Editor 4+版本。我创造了 一个带有按钮(名称为“使用模板”)的HTMl页面,用于我将使用的每个模板。

基本上,我希望用户单击相应的模板按钮,并且应该插入HTML 模板进入tinyMCE编辑器。

有谁可以给​​我一些想法我应该如何开始这样做?我发现大多数人都在寻找 在线如何从我不想要的“TinyMce”编辑器的内置选项中插入HTML模板。

请提供您的意见。

更多澄清

我有一个HTML页面(比如PAGE1),其中有几个名为“USE TEMPLATE”的按钮。所以,基本上,当用户点击“使用模板”按钮时,他应该被引导到下一页(比如PAGE2)。第2页包含一个电子邮件编辑器,即TinyMCE。必须将用户单击按钮的相应模板插入TinyMCE编辑器。我想知道在这种情况下我该怎么办?

请不要将此与INSERT混淆 - >插入tinyMce的模板选项。我知道怎么做。

1 个答案:

答案 0 :(得分:4)

如果我没错,请确保你有/ tinymce / plugins / template:

tinymce.init({
    plugins: "xx,xxx,xxx,....,template",//<-- please add template as a plugin, also make sure you have [template] plugin in your tinymce/plugins
    templates: [ 
        {title: 'Some title 2', description: 'Some desc 2', url: 'development.html'} //remember put full path to url, and also the url can be a server side script file, such as: my_template.php?t=1
    ]
});

阅读:https://www.tinymce.com/docs/plugins/template/