如何向 ckeditor 添加下拉菜单/按钮以在选择 dropdownItem 时插入内容
我需要能够向 ckeditor 的工具栏添加一个下拉列表或按钮,以弹出一个列表,并且当单击列表项时,该列表项的文本将添加到 ckeditor 的内容中,
我还需要能够更改该列表的内容,就像有一个功能:
function SetListsContent(arr)
{
//fill the list with the array arr
...
}
I need to be able to add a dropdown or button to the ckeditor's toolbar that will pop up a list, and when a listitem would be clicked the text of that list item would be added to the ckeditor's content
I also need to be ablee to change the content of that list, like to have a function:
function SetListsContent(arr)
{
//fill the list with the array arr
...
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为此,首先添加插件。添加插件的代码如下:
然后将插件添加到
config.js
ie 中的工具栏For this first of all add plugin. code to add plugin is below:
And then add plugin into toolbar in
config.js
i.e我最终这样做:
I end up doing this: