ckeditor自定义插件之二

如果每一个自定义插件都要以json的方式来写页面显然不爽,怎么弹出我自己的页面呢?

下面是个简单的示例,可以弹出自己的页面,没细写。

 

editor.addCommand( pluginName, {exec:function (e){window.open('/dialogs/mydialog.html');}} );
			
			
			editor.ui.addButton('MyButton',
					{
						
						
						label : editor.lang.mine,
						
						command : pluginName
					});

 

 

在那个函数里可以做很多事情,这下就海阔天空了。

你可能感兴趣的:(html,UI,json)