kindeditor4.X 调用insertfile.js问题
我要把插入文件,文件说明那块去掉,所以把pluginsinsertfileinsertfile.js文件中的那段代码注释掉,发现没用,最后我把insertfile.js文件删掉,然后重启tomcat服务器,发现居然还能加载插入文件功能,还是有文件说明,这是为什么,难道kindeditor插入文件功能不是调用inserfile.js文件吗???
KindEditor.plugin('insertfile', function(K) { var self = this, name = 'insertfile', allowFileUpload = K.undef(self.allowFileUpload, true), allowFileManager = K.undef(self.allowFileManager, false), formatUploadUrl = K.undef(self.formatUploadUrl, true), uploadJson = K.undef(self.uploadJson, self.basePath + 'php/upload_json.php'), extraParams = K.undef(self.extraFileUploadParams, {}), filePostName = K.undef(self.filePostName, 'imgFile'), lang = self.lang(name + '.'); self.plugin.fileDialog = function(options) { var fileUrl = K.undef(options.fileUrl, 'http://'), //fileTitle = K.undef(options.fileTitle, ''), clickFn = options.clickFn; var html = [ '<div style="padding:20px;">', '<div class="ke-dialog-row">', '<label for="keUrl" style="width:60px;">' + lang.url + '</label>', '<input type="text" id="keUrl" name="url" class="ke-input-text" style="width:160px;" /> ', '<input type="button" class="ke-upload-button" value="' + lang.upload + '" /> ', '<span class="ke-button-common ke-button-outer">', '<input type="button" class="ke-button-common ke-button" name="viewServer" value="' + lang.viewServer + '" />', '</span>', '</div>', //title 我注释掉了下面的这段代码,去掉文件说明和文本框 //'<div class="ke-dialog-row">', //'<label for="keTitle" style="width:60px;">' + lang.title + '</label>', //'<input type="text" id="keTitle" class="ke-input-text" name="title" value="" style="width:160px;" /></div>', //'</div>', //form end '</form>', '</div>' ].join('');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
需要在你引用的页面加入这句
<script charset="utf-8" src="你的js存放目录/kindeditor/plugins/insertfile/insertfile.js"></script>
上传的文件放到临时目录,HTML代码提交到服务器,提取文件URL,和临时目录文件比对,把多余的稳健删掉,剩下的移动到正式目录。