我正在尝试将一个变量从我的 plugin.js 脚本传递给我的 customTag.js 脚本。
我有以下内容:
插件.js
//I want to pass id from my plugin.js to my customTag.js
CKEDITOR.plugins.add('customTag',
{
init : function(editor){
var pluginName = 'customTag';
var id = editor.config.id;
CKEDITOR.dialog.add(pluginName, this.path + 'dialogs/customTag.js');
editor.addCommand(pluginName, new CKEDITOR.dialogCommand(pluginName));
editor.ui.addButton('customTag', { label : 'customTag', command : pluginName });
}
}
);
在我的 customTag.js
( function(){
codes...
console(id) // gives me error.
})();
谁能帮我解决这个问题?
谢谢!