0

全部,

从 CKEditor 的开发者指南(http://docs.cksource.com/CKEditor_3.x/Developers_Guide/Toolbar)中,您可以看到定义工具栏有两种方法:

方法一:config.toolbar_Full = [ { name: 'document', items : [ 'Source','-','Save','NewPage','DocProps','Preview','Print','-', '模板'] }, .... ];

方法2:config.toolbar_Full = [ ['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink','-','About']。 ... ];

他们之间有什么区别?方法 2 是否在早期版本中使用,以便它们必须支持向后兼容?

另一个问题:

config.toolbar 属性,来自文档,它可以是类似 config.toolbar="Full" 的字符串或类似的数组: config.toolbar = [ [ 'Source', '-', 'Bold', 'Italic' ] ];

你不觉得这是一种混乱吗?

4

1 回答 1

0

As per my knowledge

Method 1: has naming of the group while the second method contains only the itmes used in method 1.

Config.toolbar can be either a name of the settings or the array of the group settings.

于 2013-06-22T11:39:28.327 回答