如何在这种方法内进行电话测试? 它是可能的?
(function() {
tinymce.create( tinymce.plugins.WrImagerPlugin , {
init : function(editor, url) {
editor.addCommand( mceWrImagerLink , function() {
//--> how can i refer to test() here?
});
},
test: function () {alert( test );}
}
});
tinymce.PluginManager.add( wr_imager , tinymce.plugins.WrImagerPlugin);
})();