ueditor1.4.3 单独上传文件以及图片的使用和配置

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%String contextPath = request.getContextPath();%>















             
调用的页面: 
上传图片
上传文件

另外:因为主要是ueditor中没有afterUpfile事件,我们自己触发一下.(如果你的项目以前运行过ueditor的项目,那么修改了这里要注意清空一下浏览器的缓存,因为ueditor是有缓存的,否则修改无法生效)。所以需要有2个配置

1.在ueditor文件夹中找到文件dialogs\attachment\attachment.html中attachment找到attachment.js文件

将代码editor.execCommand('insertfile', list);;在上面添加如下的代码:editor.fireEvent('afterUpfile', list);

2.在ueditor.all.js中找到

在下方加入配置  me.fireEvent('afterUpfile', filesList);

你可能感兴趣的:(java,Web前端)