tinymce如何在另一个js文件中指定用于tinymce的css文件

时间:2013-08-12 07:30:43

标签: css tinymce

我已经制作了自己的插件。我正在使用tinymce。现在,要指定tinymce的css文件,我们在tinymce.init中使用content_css,但在我的情况下,我不想在tinymce文件中指定css文件路径本身,但希望它在我的plugin.js文件中查找。我怎么能这样做?

2 个答案:

答案 0 :(得分:3)

Done.Thought在这里分享解决方案。在我的插件的js文件中,我调用了plugin.js,我写了

tinymce.PluginManager.add('matheditor', function(editor, url) {
    function TinyMCEAdapter(){
    var pluginPath = '../editor.html',
        editOptions = null,
        editedElementId = null;
    editor.settings.content_css = '../themes/tangerine/css/equationeditor.css';
    }}     

这里参数matheditor是我的插件的名称。我们使用行设置tinymce的content_css

editor.settings.content_css = '../themes/tangerine/css/equationeditor.css';`

答案 1 :(得分:0)

查看本教程:http://www.javascriptkit.com/javatutors/loadjavascriptcss.shtml

加载插件后立即调用loadjscssfile函数。