.net环境下ckeditor与ckfinder中文文件链接乱码的问题 将ckfinder.js中的getUrl:function(){return this.folder.getUrl()+encodeURIComponent(this.name);}改为:getUrl:function(){return this.folder.getUrl()+this.name;} 转载于:https://www.cnblogs.com/JarviseZhou/p/3168873.html
getUrl:function(){return this.folder.getUrl()+encodeURIComponent(this.name);}
改为:
getUrl:function(){return this.folder.getUrl()+this.name;}