0

我创建了自定义按钮来从数据库上传我的文件。我已经在我的 ckeditor/plugins/plugin.js 中下载了我的按钮的图像,但是在运行网站时它没有显示出来。这是我的 plugin.js 的样子:

CKEDITOR.plugins.add('testimage',
{
  requires: ['iframedialog'],
  init: function (editor) {
  editor.addCommand('testimage', new CKEDITOR.dialogCommand('testimage')); // associating the executable code with the button
  editor.ui.addButton('testimage',
   {
    label: 'Upload Image',
    command: 'testimage',
    icon: this.path + 'Expanding-image-mouse-out.png'
   });
    CKEDITOR.dialog.addIframe('testimage', 'upload image', '/Upload/UploadImage', 500, 400);
   }
});
 function closedialog(url) {

   CKEDITOR.dialog.getCurrent().hide();

 }
   function setText(image_path, id, toolNum) {
     CKEDITOR.instances.CKE.insertHtml('<img src=\x22' + image_path + '\x22 border=0 id=image' + id + '>');
     var element = CKEDITOR.instances.CKE.document.getById('image' + id);
     CKEDITOR.instances.CKE.getSelection().selectElement(element);
      getToolbar(toolNum);

}
    function getToolbar(num) {

   CKEDITOR.tools.callFunction(num, this); return false;

 }

我在按钮上看不到图像,但按钮正在执行其分配的所有功能。请告诉我我做错了什么

4

0 回答 0