使⽤Ueditor时遇到的问题汇总
1. 在使⽤编辑器时,会出现点击添加图⽚或者添加附件时发现没有反应,其实是因为被编辑器的图层给覆盖了,修改⼀下。
在fig.js中的zIndex:的值修改为9999如果还是不可以的话,可以多加⼏个9,⼀定可以的。
2. **浏览器中报错:请求后台配置项http错误,上传功能将不能正常使⽤!**
编辑器在线使用有五个需要⽤的包,要放在WEB-INF/lib
3. Uncaught ReferenceError: errorHandler is not defined。
出现这个问题的原因是因为我们在config.json中使⽤了//作为注释符
4. ueditor宽度⽆法⾃适应。
在fig.js中设置initialFrameWidth:'100% ’
5. 修改最⼤字符。
在fig.js中设置maximumWords:100000
6. 多图上传中在线管理图⽚不能正常显⽰。
修改jsp/config.jsp 替换之前的代码为:
request.setCharacterEncoding( "utf-8" );
response.setHeader("Content-Type" , "text/html");
String rootPath = RealPath( "/" );
String action = Parameter("action");
String result = new ActionEnter( request, rootPath ).exec();
if( action!=null && (action.equals("listfile") || action.equals("listimage") ) ){
rootPath = place("\\", "/");
result = placeAll(rootPath, "/");
}
out.write( result );
7. 去掉多图上传中的图⽚搜索功能。
1)打开ueditor1.4.3\dialogs\image\image.html 2)删除第25⾏
<span class="tab" data-content-id="search">
<var id="lang_tab_search"></var>
</span>
3)删除第101到114⾏:
<div id="search" class="panel">
...
</div>
8. 去掉保存图⽚时的alt
1)打开ueditor1.4.3\dialogs\image\image.js
2)查有关alt的代码并注释掉
9. 插⼊图⽚⾃适应编辑框⼤⼩
在ueditor.all.js中添加红边框这句话
10. ueditor上传图⽚插⼊正⽂后如何默认居中
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论