/** * ueditor完整配置项 * 可以在这里配置整个编辑器的特性 */ /**************************提示******************************** * 所有被注释的配置项均为UEditor默认值。 * 修改默认配置请首先确保已经完全明确该参数的真实用途。 * 主要有两种修改方案,一种是取消此处注释,然后修改成对应参数;另一种是在实例化编辑器时传入对应参数。 * 当升级编辑器时,可直接使用旧版配置文件替换新版配置文件,不用担心旧版配置文件中因缺少新功能所需的参数而导致脚本报错。 **************************提示********************************/ (function () { /** * 编辑器资源文件根路径。它所表示的含义是:以编辑器实例化页面为当前路径,指向编辑器资源文件(即dialog等文件夹)的路径。 * 鉴于很多同学在使用编辑器的时候出现的种种路径问题,此处强烈建议大家使用"相对于网站根目录的相对路径"进行配置。 * "相对于网站根目录的相对路径"也就是以斜杠开头的形如"/myProject/ueditor/"这样的路径。 * 如果站点中有多个不在同一层级的页面需要实例化编辑器,且引用了同一UEditor的时候,此处的URL可能不适用于每个页面的编辑器。 * 因此,UEditor提供了针对不同页面的编辑器可单独配置的根路径,具体来说,在需要实例化编辑器的页面最顶部写上如下代码即可。当然,需要令此处的URL等于对应的配置。 * window.UEDITOR_HOME_URL = "/xxxx/xxxx/"; */ var URL; /** * 此处配置写法适用于UEditor小组成员开发使用,外部部署用户请按照上述说明方式配置即可,建议保留下面两行,以兼容可在具体每个页面配置window.UEDITOR_HOME_URL的功能。 */ var tmp = window.location.pathname; URL = window.UEDITOR_HOME_URL||tmp.substr(0,tmp.lastIndexOf("\/")+1).replace("_examples/","").replace("website/","");//这里你可以配置成ueditor目录在您网站的相对路径或者绝对路径(指以http开头的绝对路径) URL = "https://cc.china.com.au/ewebeditor/baidu/"; /** * 配置项主体。注意,此处所有涉及到路径的配置别遗漏URL变量。 */ window.UEDITOR_CONFIG = { //为编辑器实例添加一个路径,这个不能被注释 UEDITOR_HOME_URL : URL //图片上传配置区 ,imageUrl:URL+"php/imageUp.php" //图片上传提交地址 ,imagePath:"https://cc.china.com.au/upload_files/other/" //图片修正地址,引用了fixedImagePath,如有特殊需求,可自行配置 //,imageFieldName:"upfile" //图片数据的key,若此处修改,需要在后台对应文件修改对应参数 //,compressSide:0 //等比压缩的基准,确定maxImageSideLength参数的参照对象。0为按照最长边,1为按照宽度,2为按照高度 //,maxImageSideLength:900 //上传图片最大允许的边长,超过会自动等比缩放,不缩放就设置一个比较大的值,更多设置在image.html中 //附件上传配置区 ,fileUrl:URL+"php/fileUp.php" //附件上传提交地址 ,filePath:"https://cc.china.com.au/upload_files/other/" //附件修正地址,同imagePath //,fileFieldName:"upfile" //附件提交的表单名,若此处修改,需要在后台对应文件修改对应参数 //远程抓取配置区 ,catchRemoteImageEnable:false //是否开启远程图片抓取,默认开启 ,catcherUrl:URL +"php/getRemoteImage.php" //处理远程图片抓取的地址 ,catcherPath:"https://cc.china.com.au/upload_files/other/" //图片修正地址,同imagePath //,catchFieldName:"upfile" //提交到后台远程图片uri合集,若此处修改,需要在后台对应文件修改对应参数 //,separater:'ue_separate_ue' //提交至后台的远程图片地址字符串分隔符 //,localDomain:[] //本地顶级域名,当开启远程图片抓取时,除此之外的所有其它域名下的图片都将被抓取到本地 //图片在线管理配置区 ,imageManagerUrl:URL + "php/imageManager.php" //图片在线管理的处理地址 ,imageManagerPath:URL + "php/" //图片修正地址,同imagePath //屏幕截图配置区 ,snapscreenHost: '' //屏幕截图的server端文件所在的网站地址或者ip,请不要加http:// ,snapscreenServerUrl: "/ewebeditor/baidu/php/imageUp.php" //屏幕截图的server端保存程序,UEditor的范例代码为“URL +"server/upload/php/snapImgUp.php"” ,snapscreenPath: "https://cc.china.com.au/upload_files/other/" //,snapscreenServerPort: 80 //屏幕截图的server端端口 //,snapscreenImgAlign: 'center' //截图的图片默认的排版方式 //word转存配置区 ,wordImageUrl:URL + "php/imageUp.php" //word转存提交地址 ,wordImagePath:"https://cc.china.com.au/upload_files/other/" // //,wordImageFieldName:"upfile" //word转存表单名若此处修改,需要在后台对应文件修改对应参数 //获取视频数据的地址 ,getMovieUrl:URL+"php/getMovie.php" //视频数据获取地址 //工具栏上的所有的功能按钮和下拉框,可以在new编辑器的实例时选择自己需要的从新定义 ,toolbars:[ ['fullscreen', 'source', '|', 'undo', 'redo', '|', 'bold', 'italic', 'underline', 'strikethrough', 'superscript', 'subscript', 'removeformat', 'formatmatch','autotypeset', '|', '|', 'pasteplain', '|', 'forecolor', 'backcolor', 'insertorderedlist', 'insertunorderedlist','selectall', 'cleardoc', '|', 'customstyle', 'paragraph', '|','rowspacingtop', 'rowspacingbottom','lineheight', '|','fontfamily', 'fontsize', '|', 'directionalityltr', 'directionalityrtl', '|', '', 'indent', '|', 'justifyleft', 'justifycenter', 'justifyright', 'justifyjustify', '|', 'link', 'unlink', 'anchor', '|', 'imagenone', 'imageleft', 'imageright', 'imagecenter', '|', 'insertimage', 'emotion', 'insertvideo', 'attachment', 'map', 'gmap', 'insertframe','|', 'horizontal', 'date', 'time', 'spechars','snapscreen', 'wordimage', '|', 'inserttable', 'deletetable', 'insertparagraphbeforetable', 'insertrow', 'deleterow', 'insertcol', 'deletecol', 'mergecells', 'mergeright', 'mergedown', 'splittocells', 'splittorows', 'splittocols', '|', 'print', 'preview', 'searchreplace','help'] ] //当鼠标放在工具栏上时显示的tooltip提示 ,labelMap:{ 'anchor':'锚点', 'undo':'撤销', 'redo':'重做', 'bold':'加粗', 'indent':'首行缩进','snapscreen': '截图', 'italic':'斜体', 'underline':'下划线', 'strikethrough':'删除线', 'subscript':'下标', 'superscript':'上标', 'formatmatch':'格式刷', 'source':'源代码', 'blockquote':'引用', 'pasteplain':'纯文本粘贴模式', 'selectall':'全选', 'print':'打印', 'preview':'预览', 'horizontal':'分隔线', 'removeformat':'清除格式', 'time':'时间', 'date':'日期', 'unlink':'取消链接', 'insertrow':'前插入行', 'insertcol':'前插入列', 'mergeright':'右合并单元格', 'mergedown':'下合并单元格', 'deleterow':'删除行', 'deletecol':'删除列', 'splittorows':'拆分成行', 'splittocols':'拆分成列', 'splittocells':'完全拆分单元格', 'mergecells':'合并多个单元格', 'deletetable':'删除表格', 'insertparagraphbeforetable':'表格前插行', 'cleardoc':'清空文档', 'fontfamily':'字体', 'fontsize':'字号', 'paragraph':'段落格式', 'insertimage':'图片', 'inserttable':'表格', 'link':'超链接', 'emotion':'表情', 'spechars':'特殊字符', 'searchreplace':'查询替换', 'map':'Baidu地图', 'gmap':'Google地图', 'insertvideo':'视频', 'help':'帮助', 'justifyleft':'居左对齐', 'justifyright':'居右对齐', 'justifycenter':'居中对齐', 'justifyjustify':'两端对齐', 'forecolor':'字体颜色', 'backcolor':'背景色', 'insertorderedlist':'有序列表', 'insertunorderedlist':'无序列表', 'fullscreen':'全屏', 'directionalityltr':'从左向右输入', 'directionalityrtl':'从右向左输入', 'RowSpacingTop':'段前距', 'RowSpacingBottom':'段后距','highlightcode':'插入代码', 'pagebreak':'分页', 'insertframe':'插入Iframe', 'imagenone':'默认', 'imageleft':'左浮动', 'imageright':'右浮动','attachment':'附件', 'imagecenter':'居中', 'wordimage':'图片转存', 'lineheight':'行间距', 'customstyle':'自定义标题','autotypeset': '自动排版','webapp':'百度应用' } //webAppKey //百度应用的APIkey,每个站长必须首先去百度官网注册一个key后方能正常使用app功能 ,webAppKey:"00hiHF1bskXa67qrC617QmHq" //常用配置项目 //,isShow : true //默认显示编辑器 ,initialContent:'' //初始化编辑器的内容,也可以通过textarea/script给值,看官网例子 //,autoClearinitialContent:false //是否自动清除编辑器初始内容,注意:如果focus属性设置为true,这个也为真,那么编辑器一上来就会触发导致初始化的内容看不到了 //,iframeCssUrl: URL + '/themes/default/iframe.css' //给编辑器内部引入一个css文件 //,textarea:'editorValue' // 提交表单时,服务器获取编辑器提交内容的所用的参数,多实例时可以给容器name属性,会将name给定的值最为每个实例的键值,不用每次实例化的时候都设置这个值 //,focus:false //初始化时,是否让编辑器获得焦点true或false //,minFrameHeight:320 // 最小高度,默认320 //,autoClearEmptyNode : true //getContent时,是否删除空的inlineElement节点(包括嵌套的情况) //,fullscreen : false //是否开启初始化时即全屏,默认关闭 //,readonly : false /编辑器初始化结束后,编辑区域是否是只读的,默认是false //,zIndex : 900 //编辑器层级的基数,默认是900 //,imagePopup:true //图片操作的浮层开关,默认打开 //,initialStyle:'body{font-size:18px}' //编辑器内部样式,可以用来改变字体等 //,emotionLocalization:false //是否开启表情本地化,默认关闭。若要开启请确保emotion文件夹下包含官网提供的images表情文件夹 ,enterTag:'p' //编辑器回车标签。p或br //,pasteplain:false //是否纯文本粘贴。false为不使用纯文本粘贴,true为使用纯文本粘贴 //iframeUrlMap //dialog内容的路径 ~会被替换成URL,垓属性一旦打开,将覆盖所有的dialog的默认路径 //,iframeUrlMap:{ // 'anchor':'~/dialogs/anchor/anchor.html', // } //insertorderedlist //有序列表的下拉配置 //,insertorderedlist : [ //['1,2,3...','decimal'], //['a,b,c...','lower-alpha'], //['i,ii,iii...','lower-roman'], //['A,B,C','upper-alpha'], //['I,II,III...','upper-roman'] // ] //insertunorderedlist //无序列表的下拉配置 //,insertunorderedlist : [ //['○ 小圆圈','circle'], //['● 小圆点','disc'], //['■ 小方块','square'] //] //fontfamily //字体 //,'fontfamily':[ // ['宋体',['宋体', 'SimSun']], // ['楷体',['楷体', '楷体_GB2312', 'SimKai']], // ['黑体',['黑体', 'SimHei']], // ['隶书',['隶书', 'SimLi']], // ['andale mono',['andale mono']], // ['arial',['arial', 'helvetica', 'sans-serif']], // ['arial black',['arial black', 'avant garde']], // ['comic sans ms',['comic sans ms']], // ['impact',['impact', 'chicago']], // ['times new roman',['times new roman']] // ] //fontsize //字号 //,'fontsize':[10, 11, 12, 14, 16, 18, 20, 24, 36] //paragraph //段落格式 值:显示的名字 //,'paragraph':['p:段落', 'h1:标题 1', 'h2:标题 2', 'h3:标题 3', 'h4:标题 4', 'h5:标题 5', 'h6:标题 6'] //rowspacingtop //段间距 值和显示的名字相同 //,'rowspacingtop':['5', '10', '15', '20', '25'] //rowspacingBottom //段间距 值和显示的名字相同 //,'rowspacingtop':['5', '10', '15', '20', '25'] //lineheight //行内间距 值和显示的名字相同 //,'lineheight':['1', '1.5','1.75','2', '3', '4', '5'] //customstyle //自定义样式 //block的元素是依据设置段落的逻辑设置的,inline的元素依据BIU的逻辑设置 //尽量使用一些常用的标签 //参数说明 //tag 使用的标签名字 //label 显示的名字也是用来标识不同类型的标识符,注意这个值每个要不同, //style 添加的样式 //每一个对象就是一个自定义的样式 //,'customstyle':[ // {tag:'h1', label:'居中标题', style:'border-bottom:#ccc 2px solid;padding:0 4px 0 0;text-align:center;margin:0 0 20px 0;'}, // {tag:'h1', label:'居左标题', style:'border-bottom:#ccc 2px solid;padding:0 4px 0 0;margin:0 0 10px 0;'}, // {tag:'span', label:'强调', style:'font-style:italic;font-weight:bold;color:#000'}, // {tag:'span', label:'明显强调', style:'font-style:italic;font-weight:bold;color:rgb(51, 153, 204)'} // ] //contextMenu //定义了右键菜单的内容,可以参考plugins/contextmenu.js里边的默认菜单的例子 //,contextMenu:[ // { // label:'显示的名字', // cmdName:'执行的command命令,当点击这个右键菜单时', // //exec可选,有了exec就会在点击时执行这个function, // exec:function () { // //this是当前编辑器的实例 // //this.ui._dialogs['inserttableDialog'].open(); // } // } // ] //wordCount ,wordCount:false //是否开启字数统计 //,maximumWords:10000 //允许的最大字符数 //,wordCountMsg:'当前已输入 {#count} 个字符,您还可以输入{#leave} 个字符 ' //字数统计提示,{#count}代表当前字数,{#leave}代表还可以输入多少字符数 //,wordOverFlowMsg:'你输入的字符个数已经超出最大允许值,服务器可能会拒绝保存!' //超出字数限制提示 //highlightcode // 代码高亮时需要加载的第三方插件的路径 // ,highlightJsUrl:URL + "third-party/SyntaxHighlighter/shCore.js" // ,highlightCssUrl:URL + "third-party/SyntaxHighlighter/shCoreDefault.css" //tab //点击tab键时移动的距离,tabSize倍数,tabNode什么字符做为单位 //,tabSize:4 //,tabNode:' ' //elementPathEnabled //是否启用元素路径,默认是显示 //,elementPathEnabled : true //removeFormat //清除格式时可以删除的标签和属性 //removeForamtTags标签 //,removeFormatTags:'b,big,code,del,dfn,em,font,i,ins,kbd,q,samp,small,span,strike,strong,sub,sup,tt,u,var' //removeFormatAttributes属性 //,removeFormatAttributes:'class,style,lang,width,height,align,hspace,valign' //undo //可以最多回退的次数,默认20 //,maxUndoCount:20 //当输入的字符数超过该值时,保存一次现场 //,maxInputCount:20 //autoHeightEnabled // 是否自动长高,默认true ,autoHeightEnabled:false //autoFloatEnabled //是否保持toolbar的位置不动,默认true //,autoFloatEnabled:true //indentValue //首行缩进距离,默认是2em //,indentValue:'2em' //pageBreakTag //分页标识符,默认是_baidu_page_break_tag_ ,pageBreakTag:'[-page-]' //sourceEditor //源码的查看方式,codemirror 是代码高亮,textarea是文本框,默认是codemirror //,sourceEditor:"codemirror" //如果sourceEditor是codemirror,还用配置一下两个参数 //codeMirrorJsUrl js加载的路径,默认是 URL + "third-party/codemirror2.15/codemirror.js" //,codeMirrorJsUrl:URL + "third-party/codemirror2.15/codemirror.js" //codeMirrorCssUrl css加载的路径,默认是 URL + "third-party/codemirror2.15/codemirror.css" //,codeMirrorCssUrl:URL + "third-party/codemirror2.15/codemirror.css" //serialize // 配置编辑器的过滤规则 // serialize是个object,可以有属性blackList,whiteList属性,默认是{} // 例子: //, serialize : { // //黑名单,编辑器会过滤掉一下标签 // blackList:{style:1, link:1,object:1, applet:1, input:1, meta:1, base:1, button:1, select:1, textarea:1, '#comment':1, 'map':1, 'area':1} // } //autotypeset // //自动排版参数 // ,autotypeset:{ // mergeEmptyline : true, //合并空行 // removeClass : true, //去掉冗余的class // removeEmptyline : false, //去掉空行 // textAlign : "left" , //段落的排版方式,可以是 left,right,center,justify 去掉这个属性表示不执行排版 // imageBlockLine : 'center', //图片的浮动方式,独占一行剧中,左右浮动,默认: center,left,right,none 去掉这个属性表示不执行排版 // pasteFilter : false, //根据规则过滤没事粘贴进来的内容 // clearFontSize : false, //去掉所有的内嵌字号,使用编辑器默认的字号 // clearFontFamily : false, //去掉所有的内嵌字体,使用编辑器默认的字体 // removeEmptyNode : false , // 去掉空节点 // //可以去掉的标签 // removeTagNames : {标签名字:1}, // indent : false, // 行首缩进 // indentValue : '2em' //行首缩进的大小 // } }; })();