"格式"工具栏中的选项包含以下选项:
我想知道如何删除此"格式下的所有/任何选项"下拉列表。 就像我想删除Bold,Italic,Underline。
请建议。
提前多多感谢!
答案 0 :(得分:1)
您可以在init中控制菜单。例如,你可以这样做:
menu : {
file : {title : 'File' , items : 'newdocument print'},
edit : {title : 'Edit' , items : 'undo redo | cut copy paste pastetext | selectall'},
insert : {title : 'Insert', items : 'link media | template hr'},
view : {title : 'View' , items : 'visualaid'},
format : {title : 'Format', items : 'bold italic underline strikethrough superscript subscript | formats | removeformat'},
table : {title : 'Table' , items : 'inserttable tableprops deletetable | cell row column'},
tools : {title : 'Tools' , items : 'code'},
},
menubar: 'file edit format table tags'
因此,如果从格式菜单的“项目”列表中删除正确的选项,它们将不会出现在编辑器中。