
ueditor
文章平均质量分 78
Jack小强
这个作者很懒,什么都没留下…
展开
-
【UEditor】 第一次正常,第二次渲染失败(无法正常加载)问题
提出问题使用UEditor-1.4.3中遇到第一次跳转到使用UEditor的界面后,编辑器加载正常,返回后第二次再跳转到这个界面就出现UEditor无法正常加载,也没百度到答案,看UEditor源码,发现这样一段:/** * @file * @name UE * @short UE * @desc UEditor的顶部命名空间 */转载 2017-06-05 14:16:35 · 2812 阅读 · 0 评论 -
【js】KindEditor + struts2使用详解(上传文件,支持多图上传)
1、html 2、依赖脚本 3、下载完成后放入指定目录,配置完成后初始化代码var editor; function InitEditor() { var content = '${goodsModel.goodsDesc}'; KindEditor.ready(function原创 2016-04-12 17:50:31 · 1482 阅读 · 0 评论 -
【CKEditor 】CKEditor 图片的上传
CKEditor的编辑器工具栏中有一项“图片域”,该工具可以贴上图片地址来在文本编辑器中加入图片,但是没有图片上传功能。“预览”中有一坨鸟语,看得很不爽,首先要去掉这些。在ckeditor/config.js中加上一个配置项:config.image_previewText = ' ';注意引号里面一定要有个空格,不能是空字符串。扫除这个障碍,下面来研究图片上传。转载 2015-05-12 18:45:09 · 1170 阅读 · 0 评论 -
【CKEditor】CKEditor 重置的实现
<%String path = request.getContextPath();String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";%> "> My JSP 'index.jsp' startin原创 2015-05-12 18:44:37 · 1896 阅读 · 0 评论 -
【CKEditor 】CKEditor 使用与简单配置简介
ckeditor 的官方网站是 http://ckeditor.com/一、使用方法:1、在页面中引入ckeditor核心文件ckeditor.js2、在使用编辑器的地方插入HTML控件 如果是ASP.NET环境,也可用服务器端控件 注意在控件中加上 class="ckeditor" 。3、将相应的控件替换成编辑器代码转载 2015-05-12 13:41:56 · 560 阅读 · 0 评论