我按照此处的问题向我的 tinymce 添加了一个自定义下拉列表,但我无法让它工作。当我在 tinyMCE.init 周围添加相关代码并注册插件时,我在控制台中收到以下错误
未捕获的类型错误:对象 [object Object] 没有方法“addMenuItem”
我的目标是有一个下拉菜单,当被选中时会将内容插入到文本区域中。我现在正在使用按钮执行此操作,但它们开始堆积起来,看起来真的很乱。我更喜欢有一个下拉菜单,这样我就可以轻松地添加它,而不会有太多的按钮散落在这个地方。
我确定我已经在我的标题中包含了相关文件,但也许这就是错误的原因?
我的代码位于下面
var myListItems = ['Item1','Item2'];
tinymce.PluginManager.add('myNewPluginName', function(editor) {
var menuItems = [];
tinymce.each(myListItems, function(myListItemName) {
menuItems.push({
text: myListItemName,
onclick: function() {
editor.insertContent(myListItemName);
}
});
});
editor.addMenuItem('insertValueOfMyNewDropdown', {
icon: 'date',
text: 'Do something with this new dropdown',
menu: menuItems,
context: 'insert'
});
});
tinyMCE.init({
theme : "advanced",
mode: "exact",
plugins: "table,myNewPluginName",
elements : "elm1,elm2,elm3,elm4,elm5,elm6",
theme_advanced_font_sizes: "10px,12px,13px,14px,16px,18px,20px",
font_size_style_values: "12px,13px,14px,16px,18px,20px",
theme_advanced_toolbar_location : "top",
theme_advanced_buttons1 : "bold,italic,underline,strikethrough,separator,"
+ "justifyleft,justifycenter,justifyright,justifyfull,formatselect,"
+ "bullist,numlist,outdent,indent,seperator,fontselect,fontsizeselect",
theme_advanced_buttons2 : "tablecontrols",
height:"500px",
width:"100%",
file_browser_callback : 'myFileBrowser'
});
任何帮助将不胜感激!