ueditor 编辑器,自定义图片上传
Posted 赵羴
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ueditor 编辑器,自定义图片上传相关的知识,希望对你有一定的参考价值。
- <div>
- <h1>完整demo</h1>
- <form method="post" name="form">
- <div id="editor" name="content" style="width:800px;height:500px"></div>
- <div id="editor2" name="content" style="width:800px;height:500px"></div>
- </form>
- </div>
- <div><input type="button" value="提交" onclick="t()"></input></div>
- 三、创建ue对象实例
- <script type="text/javascript">
- //实例化编辑器
- //建议使用工厂方法getEditor创建和引用编辑器实例,如果在某个闭包下引用该编辑器,直接调用UE.getEditor(‘editor‘)就能拿到相关的实例
- var ue = UE.getEditor(‘editor‘,{
- toolbars: [
- [‘source‘,‘subscript‘,‘superscript‘, ‘undo‘, ‘redo‘, ‘bold‘, ‘snapscreen‘,‘preview‘, ‘simpleupload‘,‘insertimage‘, ‘emotion‘,
- ‘spechars‘, ‘drafts‘ , ‘time‘,‘date‘]
- ],
- autoHeightEnabled: true,
- autoFloatEnabled: true,
- imageActionName:‘testUpload‘//定义上传的action名称
- });
- UE.Editor.prototype._bkGetActionUrl = UE.Editor.prototype.getActionUrl;
- UE.Editor.prototype.getActionUrl = function(action) {
- if (action == ‘testUpload‘) {//跳转到后来的上传action
- return ‘${pageContext.request.contextPath}/testEditor/testUpload.action‘;
- } else {
- return this._bkGetActionUrl.call(this, action);
- }
- }
- function t(){
- form.action="${pageContext.request.contextPath }/testEditor/testForm.action";
- form.submit();
- }
- </script>
以上是关于ueditor 编辑器,自定义图片上传的主要内容,如果未能解决你的问题,请参考以下文章
请问:百度Ueditor编辑器为啥不能上传图片啊?在ASP中,请求高手指教。