Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/jquery/71.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何使用jquery将IMCE按钮插入自定义模块中的所见即所得工具栏?_Jquery_Ckeditor_Toolbar - Fatal编程技术网

如何使用jquery将IMCE按钮插入自定义模块中的所见即所得工具栏?

如何使用jquery将IMCE按钮插入自定义模块中的所见即所得工具栏?,jquery,ckeditor,toolbar,Jquery,Ckeditor,Toolbar,我创建了一个模块,我想在编辑器的工具栏中插入imce按钮。 我有密码: CKEDITOR.replace(id,{ height:"200", width: "800", resize_enabled : 'false', resize_maxHeight : '200', resize_maxWi

我创建了一个模块,我想在编辑器的工具栏中插入imce按钮。 我有密码:

CKEDITOR.replace(id,{
                    height:"200",
                    width: "800",
                    resize_enabled : 'false',
                    resize_maxHeight : '200',
                    resize_maxWidth : '800',
                    toolbar : 
                    [
                        { name: 'basicstyles', items : [ 'Bold','Italic','Underline','-','RemoveFormat' ] },
                        { name: 'paragraph', items : [ 'NumberedList','BulletedList'] },
                        { name: 'links', items : [ 'Link','Unlink', 'Image', 'Table'] },
                        { name: 'regularstyles', items : [ 'Superscript' , 'Subscript' ]} ,
                        { name: 'SpecialChar', items: ['SpecialChar'] },
                        { name: 'clipboard', items : [ 'Cut','Copy','Paste','PasteText','PasteFromWord', 'Find' , 'Replace' , 'Undo' , 'Redo' ] },
                        { name: 'tools', items : [ 'Source' ] },
                        { name: 'tools', items : [ 'Maximize' ] },
                    ],
                });
我尝试插入代码:

{ name: 'links', items : [ 'Link','Unlink', 'IMCE', 'Table'] },
但它没有运行。 请帮帮我