在CKEditor v4.2上传图像期间添加上传图标

时间:2013-08-22 16:11:17

标签: javascript upload ckeditor

我正在使用CKEditor v4.2。当您上传图片时,它看起来像这样(我删除了一些表单字段):

CKEditor v4.2 image upload

问题:您无法看到,您正在上传图片,因为既没有进度条也没有上传图标。这对于没有经验的人来说没有很好的可用性。

如何使用API​​添加这样的加载图像或操作图像插件: enter image description here

我不知道:(谢谢!

1 个答案:

答案 0 :(得分:-1)

没有图像,但显示文字即可。

type: "fileButton", 
id: "uploadButton",
filebrowser: "info:txtUrl",
label: d.lang.image.btnUpload,
onClick: function () {
 var input1 = this.getInputElement();
 input1.$.style = 'display:none';
 input1.$.before("file is uploading,please wait...");
 },
 'for': ['Upload', 'upload']