我想创建一个带有子菜单的列表框,但我不知道如何制作子菜单。TinyMCE 的文档很糟糕,所以我在这里问它。
这是我的代码:
editor.addButton('OwnStyling', {
type: 'listbox',
text: 'Stylesheet',
icon: false,
onselect: function(e) {
editor.insertContent(this.value());
},
values: [
{text: 'Menu item 1', value: 'Some text 1'},
{text: 'Menu item 2', value: 'Some text 2'},
{text: 'Menu item 3', value: 'Some text 3'}
],
onPostRender: function() {
// Select the second item by default
}
});
在价值观的地方,我想用他自己的价值观制作一个子项目。有谁知道该怎么做?
已经谢谢了!!