Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$('.trumbowyg').trumbowyg({ btnsDef: { dropdownButtonName: { dropdown: ['btnA', 'btnB'], title: 'Displayed dropdown button name', ico: 'iconName', hasIcon: true } }
}); 尝试将自定义下拉菜单添加到 trumbowyg 时不起作用
您还必须在 trumbowyg 按钮窗格中向 btns 添加新按钮。
$('.trumbowyg').trumbowyg( { btnsDef: { dropdownButtonName: { dropdown: ['btnA', 'btnB'], title: 'Displayed dropdown button name', ico: 'iconName', hasIcon: true } } btns: [ ['dropdownButtonName'] ] });