diff --git a/_src/api.js b/_src/api.js new file mode 100644 index 000000000..bb206ca62 --- /dev/null +++ b/_src/api.js @@ -0,0 +1,62 @@ +/** + * 该文件定义了API文档所使用到的本地函数的说明 + * @file + * @module Native + */ + +/** + * 辅助接口说明 + * @module Native + * @unfile + */ + +/** + * 原生String对象, 字符串 + * @class String + */ + +/** + * 原生Function对象, 函数 + * @class Function + */ + +/** + * 原生Object对象, 普通对象 + * @remind 如果某一方法的参数类型为Object时, 表示该参数应该接受一个key-value集合 + * @class Object + */ + +/** + * 原生Boolean对象, 布尔值 + * @class Boolean + */ + +/** + * 原生Number对象, 数值 + * @class Number + */ + +/** + * 原生NULL对象, 空 + * @class NULL + */ + +/** + * 原生Array对象, 数组 + * @class Array + */ + +/** + * 浏览器Node, dom节点 + * @class Node + */ + +/** + * 浏览器Element, dom元素 + * @class Element + */ + +/** + * UEditor模拟dom节点对象 + * @class uNode + */ \ No newline at end of file diff --git a/_src/commands.js b/_src/commands.js deleted file mode 100755 index ffd77a966..000000000 --- a/_src/commands.js +++ /dev/null @@ -1,257 +0,0 @@ -//本文件非编辑器核心文件,仅适用于生成对应的命令接口文档 -/** - * @file - * @name 编辑器命令接口 - * @short Commands - * @desc - * - * UEditor中执行命令的统一调用格式为 - * editor.execCommand("cmdName"[,opt]); - * - * - * 检测当前命令是否可用的方法是 - * editor.queryCommandState("cmdName"); - * - * - * 部分命令可以返回命令值,其格式为 - * editor.queryCommandValue("cmdName"); - */ -/** - * 插入锚点 - * @name anchor - * @grammar editor.execCommand("anchor","name"); //锚点的名字 - */ -/** - * 为当前选中文字添加粗体效果 - * @name bold - * @grammar editor.execCommand("bold"); - */ -/** - * 为当前选中文字添加斜体效果 - * @name italic - * @grammar editor.execCommand("italic"); - */ -/** - * 为当前选中文字添加下划线效果 - * @name underline - * @grammar editor.execCommand("underline"); - */ - - -/** - * 为当前选中文字添加删除线效果 - * @name strikethrough - * @grammar editor.execCommand("strikethrough"); - */ -/** - * 将当前选中文字转换成上标 - * @name superscript - * @grammar editor.execCommand("superscript"); - */ -/** - * 将当前选中文字转换成下标 - * @name subscript - * @grammar editor.execCommand("subscript"); - */ -/** - * 为当前选中文字添加颜色 - * @name foreColor - * @grammar editor.execCommand("foreColor","#ffffff"); - */ -/** - * 为当前选中文字添加背景颜色 - * @name backColor - * @grammar editor.execCommand("backColor","#dddddd"); - */ -/** - * 设置当前选中文字的字体 - * @name fontFamily - * @grammar editor.execCommand("fontFamily","微软雅黑,Microsoft YaHei"); - */ -/** - * 设置当前选中文字的字号 - * @name fontSize - * @grammar editor.execCommand("fontSize","32px"); - */ -/** - * 设置当前选区的段落格式,如p,h1,h2,h3,... - * @name paragraph - * @grammar editor.execCommand("paragraph","h1"); - */ -/** - * 将当前选区变换成有序或者无序列表 - * @name insert(Un)OrderedList - * @grammar editor.execCommand("insertOrderedList"); - */ -/** - * 设置当前选区的行间距 - * @name lineHeight - * @grammar editor.execCommand("lineHeight"); - */ -/** - * 设置当前选区中的字体对齐方式 - * @name justify - * @grammar editor.execCommand("justify",align); //align可为Left,Right,Center,Justify - */ -/** - * 将当前选中文字中的字母转换成大写 - * @name toUppercase - * @grammar editor.execCommand("toUppercase"); - */ -/** - * 将当前选中文字中的字母转换成小写 - * @name toLowercase - * @grammar editor.execCommand("toLowercase"); - */ -/** - * 为当前选区所在的块级元素添加引用标记 - * @name blockquote - * @grammar editor.execCommand("blockquote"); - */ -/** - * 设置当前选区所在块级元素的文字输入方向 - * @name directionality - * @grammar editor.execCommand("directionality",dir); //dir可为LTR,RTL - */ -/** - * 清除当前选中文字上的所有样式或者指定样式 - * @name removeFormat - * @grammar editor.execCommand("removeFormat") //根据ueditor.config.js里的removeFormatTags,removeFormatAttributes两个属性作为规则 - * @grammar editor.execCommand("removeFormat",tags,style); //清除指定tags上的指定style - * @example - * editor.execCommand("removeFormat",'span,a','color,background-color') - */ -/** - * 切换纯文本粘贴模式 - * @name pastePlain - * @grammar ue.execCommand("pastePlain"); - */ -/** - * 开启格式刷功能 - * @name formatMatch - * @grammar editor.execCommand("formatMatch"); - */ -/** - * 清空文档 - * @name clearDoc - * @grammar editor.execCommand("clearDoc"); - */ -/** - * 删除当前选中文本 - * @name delete - * @grammar editor.execCommand("delete"); - */ -/** - * 全部选择 - * @name selectAll - * @grammar editor.execCommand("selectAll"); - */ -/** - * 撤销操作 - * @name undo - * @grammar editor.execCommand("undo"); - */ -/** - * 恢复操作 - * @name redo - * @grammar editor.execCommand("redo"); - */ -/** - * 对整个编辑文档进行自动排版 - * @name autoTypeset - * @grammar editor.execCommand("autoTypeset"); - */ -/** - * 在当前选区位置插入一段html代码,最基本功能。大部分其他插入命令都会调用此命令完成最后的插入 - * @name insertHtml - * @grammar editor.execCommand("insertHtml","欢迎使用UEditor!") - */ -/** - * 在当前选区位置插入一个超链接 - * @name link - * @grammar editor.execCommand("link",linkObj); - * @example - * editor.execCommand("link",{ - * href: "http://ueditor.baidu.com", //超链地址,必选 - * _src: "http://ueditor.baidu.com", //UE内部使用参数,与href保持一致即可,可选 - * target: "_self", //目标窗口,可选 - * textValue: "UEditor", //链接显示文本,可选 - * title: "百度开源富文本编辑器UEditor官网" //标题,可选 - * }) - */ -/** - * 在当前选区位置插入一个图片 - * @name insertImage - * @grammar editor.execCommand("insertImage",imageObj); - * @example - * editor.execCommand("insertImage",{ - * src: "http://ueditor.baidu.com/logo.jpg", //图片链接地址,必选 - * _src: "http://ueditor.baidu.com/logo.jpg", //UE内部使用参数,与src保持一致即可,可选 - * width: 300, //图片显示宽度,可选 - * height: 400, //图片显示高度,可选 - * border: 2, //图片边框,可选 - * hspace: 5, //图片左右边距,可选 - * vspace: 2, //图片上下边距,可选 - * alt: 'UEditor-logo', //图片替换文字,可选 - * title: "百度开源富文本编辑器UEditor官网" //图片标题,可选 - * }) - */ -/** - * 在当前选区位置插入一个视频 - * @name insertVideo - * @grammar editor.execCommand("insertVideo",videoObj); - * @example - * editor.execCommand("insertVideo",{ - * url: "http://youku.com/id?id=1233122", //视频地址,必选 - * width: 420, //视频宽度,可选 - * height: 280, //视频高度,可选 - * align: "none" //对齐方式,支持right,left,center,none ,可选 - * }) - */ -/** - * 在当前选区位置插入一个日期或者时间 - * @name date|time - * @grammar editor.execCommand("date"); - */ -/** - * 在当前选区位置插入一个分页符标记 - * @name pageBreak - * @grammar editor.execCommand("pageBreak"); - */ -/** - * 切换源码编辑模式和富文本编辑模式 - * @name source - * @grammar editor.execCommand("source"); - */ -/** - * IE下进入截屏模式 - * @name snapScreen - * @grammar editor.execCommand("snapScreen"); - */ -/** - * 插入表格 - * @name insertTable - * @grammar editor.execCommand("insertTable",rows,cols); - */ - -/** - * 查找替换 - * @name searchreplace - * @grammar editor.execCommand("searchreplace",opt); - * @desc - * opt是个json对象,属性如下 - * * ''all'' true表示查找整个文档,false表示从上次的位置开始查找,默认是false - * * ''casesensitive'' 大小写铭感,true是铭感,默认是false - * * ''dir'' 1表示从前往后查,-1表示从后往前 - * * ''searchStr'' 查找的字符串 - * * ''replaceStr'' 替换用的字符串 - */ - - - - - - - - - diff --git a/_src/core/Editor.js b/_src/core/Editor.js index 2cc367d7e..687e919eb 100644 --- a/_src/core/Editor.js +++ b/_src/core/Editor.js @@ -1,18 +1,33 @@ /** + * 编辑器主类,包含编辑器提供的大部分公用接口 * @file - * @name UE.Editor - * @short Editor - * @import editor.js,core/utils.js,core/EventBase.js,core/browser.js,core/dom/dtd.js,core/dom/domUtils.js,core/dom/Range.js,core/dom/Selection.js,plugins/serialize.js - * @desc 编辑器主类,包含编辑器提供的大部分公用接口 + * @module UE + * @class Editor + * @since 1.2.6.1 */ + +/** + * UEditor公用空间,UEditor所有的功能都挂载在该空间下 + * @unfile + * @module UE + */ + +/** + * UEditor的核心类,为用户提供与编辑器交互的接口。 + * @unfile + * @module UE + * @class Editor + */ + (function () { var uid = 0, _selectionChangeTimer; + /** + * 获取编辑器的html内容,赋值到编辑器所在表单的textarea文本域里面 * @private - * @ignore - * @param form 编辑器所在的form元素 - * @param editor 编辑器实例对象 + * @method setValue + * @param { UE.Editor } editor 编辑器事例 */ function setValue(form, editor) { var textarea; @@ -41,7 +56,14 @@ (editor.options.allHtmlEnabled ? editor.getAllHtml() : editor.getContent(null, null, true)) : '' } - function loadPlugins(me){ + + /** + * 初始化插件 + * @private + * @method loadPlugins + * @param { UE.Editor } editor 编辑器事例 + */ + function loadPlugins(me) { //初始化插件 for (var pi in UE.plugins) { UE.plugins[pi].call(me); @@ -50,21 +72,168 @@ me.fireEvent("langReady"); } - function checkCurLang(I18N){ - for(var lang in I18N){ + + /** + * 获取语言包列里面的第一种语言 + * @private + * @method checkCurLang + * @param { Object } I18N 编辑器事例 + */ + function checkCurLang(I18N) { + for (var lang in I18N) { return lang } } + + /** + * 编辑器准备就绪后会触发该事件 + * @module UE + * @class Editor + * @event ready + * @remind render方法执行完成之后,会触发该事件 + * @remind + * @example + * ```javascript + * editor.addListener( 'ready', function( editor ) { + * editor.execCommand( 'focus' ); //编辑器家在完成后,让编辑器拿到焦点 + * } ); + * ``` + */ + /** + * 执行destroy方法,会触发该事件 + * @module UE + * @class Editor + * @event destroy + * @see UE.Editor:destroy() + */ + /** + * 执行reset方法,会触发该事件 + * @module UE + * @class Editor + * @event reset + * @see UE.Editor:reset() + */ + /** + * 执行focus方法,会触发该事件 + * @module UE + * @class Editor + * @event focus + * @see UE.Editor:focus(Boolean) + */ + /** + * 语言加载完成会触发该事件 + * @module UE + * @class Editor + * @event langReady + */ + /** + * 运行命令之后会触发该命令 + * @module UE + * @class Editor + * @event beforeExecCommand + */ + /** + * 运行命令之后会触发该命令 + * @module UE + * @class Editor + * @event afterExecCommand + */ + /** + * 运行命令之前会触发该命令 + * @module UE + * @class Editor + * @event firstBeforeExecCommand + */ + /** + * 在getContent方法执行之前会触发该事件 + * @module UE + * @class Editor + * @event beforeGetContent + * @see UE.Editor:getContent() + */ + /** + * 在getContent方法执行之后会触发该事件 + * @module UE + * @class Editor + * @event afterGetContent + * @see UE.Editor:getContent() + */ + /** + * 在getAllHtml方法执行时会触发该事件 + * @module UE + * @class Editor + * @event getAllHtml + * @see UE.Editor:getAllHtml() + */ + /** + * 在setContent方法执行之前会触发该事件 + * @module UE + * @class Editor + * @event beforeSetContent + * @see UE.Editor:setContent(String) + */ + /** + * 在setContent方法执行之后会触发该事件 + * @module UE + * @class Editor + * @event afterSetContent + * @see UE.Editor:setContent(String) + */ + /** + * 每当编辑器内部选区发生改变时,将触发该事件 + * @event selectionchange + * @warning 该事件的触发非常频繁,不建议在该事件的处理过程中做重量级的处理 + * @example + * ```javascript + * editor.addListener( 'selectionchange', function( editor ) { + * console.log('选区发生改变'); + * } + */ + /** + * 在所有selectionchange的监听函数执行之前,会触发该事件 + * @module UE + * @class Editor + * @event beforeSelectionChange + * @see UE.Editor:selectionchange + */ /** - * UEditor编辑器类 - * @name Editor - * @desc 创建一个跟编辑器实例 - * - ***container*** 编辑器容器对象 - * - ***iframe*** 编辑区域所在的iframe对象 - * - ***window*** 编辑区域所在的window - * - ***document*** 编辑区域所在的document对象 - * - ***body*** 编辑区域所在的body对象 - * - ***selection*** 编辑区域的选区对象 + * 在所有selectionchange的监听函数执行完之后,会触发该事件 + * @module UE + * @class Editor + * @event afterSelectionChange + * @see UE.Editor:selectionchange + */ + /** + * 编辑器内容发生改变时会触发该事件 + * @module UE + * @class Editor + * @event contentChange + */ + + + /** + * 以默认参数构建一个编辑器实例 + * @constructor + * @remind 通过 改构造方法实例化的编辑器,不带ui层.需要render到一个容器,编辑器实例才能正常渲染到页面 + * @example + * ```javascript + * var editor = new UE.Editor(); + * editor.execCommand('blod'); + * ``` + * @see UE.Config + */ + + /** + * 以给定的参数集合创建一个编辑器实例,对于未指定的参数,将应用默认参数。 + * @constructor + * @remind 通过 改构造方法实例化的编辑器,不带ui层.需要render到一个容器,编辑器实例才能正常渲染到页面 + * @param { Object } setting 创建编辑器的参数 + * @example + * ```javascript + * var editor = new UE.Editor(); + * editor.execCommand('blod'); + * ``` + * @see UE.Config */ var Editor = UE.Editor = function (options) { var me = this; @@ -79,7 +248,7 @@ me.setOpt({ isShow: true, initialContent: '', - initialStyle:'', + initialStyle: '', autoClearinitialContent: false, iframeCssUrl: me.options.UEDITOR_HOME_URL + 'themes/iframe.css', textarea: 'editorValue', @@ -99,14 +268,14 @@ allHtmlEnabled: false, scaleEnabled: false, tableNativeEditInFF: false, - autoSyncData : true + autoSyncData: true }); - if(!utils.isEmptyObject(UE.I18N)){ + if (!utils.isEmptyObject(UE.I18N)) { //修改默认的语言类型 me.options.lang = checkCurLang(UE.I18N); loadPlugins(me) - }else{ + } else { utils.loadFile(document, { src: me.options.langPath + me.options.lang + "/" + me.options.lang + ".js", tag: "script", @@ -120,17 +289,21 @@ UE.instants['ueditorInstant' + me.uid] = me; }; Editor.prototype = { + + /** - * 当编辑器ready后执行传入的fn,如果编辑器已经完成ready,就马上执行fn,fn的中的this是编辑器实例。 - * 大部分的实例接口都需要放在该方法内部执行,否则在IE下可能会报错。 - * @name ready - * @grammar editor.ready(fn) fn是当编辑器渲染好后执行的function + * 编辑器对外提供的监听ready事件的接口, 通过调用该方法,达到的效果与监听ready事件是一致的 + * @method ready + * @param { Function } fn 编辑器ready之后所执行的回调, 如果在注册事件之前编辑器已经ready,将会 + * 立即触发该回调。 + * @remind 需要等待编辑器加载完成后才能执行的代码,可以使用该方法传入 * @example - * var editor = new UE.ui.Editor(); - * editor.render("myEditor"); - * editor.ready(function(){ - * editor.setContent("欢迎使用UEditor!"); - * }) + * ```javascript + * editor.ready( function( editor ) { + * editor.setContent('初始化完毕'); + * } ); + * ``` + * @see UE.Editor.event:ready */ ready: function (fn) { var me = this; @@ -138,10 +311,33 @@ me.isReady ? fn.apply(me) : me.addListener('ready', fn); } }, + + + /** + * 该方法是提供给插件里面使用,设置配置项默认值 + * @method setOpt + * @warning 三处设置配置项的优先级: 实例化时传入参数 > setOpt()设置 > config文件里设置 + * @warning 该方法仅供编辑器插件内部和编辑器初始化时调用,其他地方不能调用。 + * @param { String } key 编辑器的可接受的选项名称 + * @param { * } val 该选项可接受的值 + * @example + * ```javascript + * editor.setOpt( 'initContent', '欢迎使用编辑器' ); + * ``` + */ + /** - * 为编辑器设置默认参数值。若用户配置为空,则以默认配置为准 - * @grammar editor.setOpt(key,value); //传入一个键、值对 - * @grammar editor.setOpt({ key:value}); //传入一个json对象 + * 该方法是提供给插件里面使用,以{key:value}集合的方式设置插件内用到的配置项默认值 + * @method setOpt + * @warning 三处设置配置项的优先级: 实例化时传入参数 > setOpt()设置 > config文件里设置 + * @warning 该方法仅供编辑器插件内部和编辑器初始化时调用,其他地方不能调用。 + * @param { Object } options 将要设置的选项的键值对对象 + * @example + * ```javascript + * editor.setOpt( { + * 'initContent': '欢迎使用编辑器' + * } ); + * ``` */ setOpt: function (key, val) { var obj = {}; @@ -152,10 +348,15 @@ } utils.extend(this.options, obj, true); }, + + /** - * 销毁编辑器实例对象 - * @name destroy - * @grammar editor.destroy(); + * 销毁编辑器实例,使用textarea代替 + * @method destroy + * @example + * ```javascript + * editor.destroy(); + * ``` */ destroy: function () { @@ -185,83 +386,94 @@ } UE.delEditor(key); }, + /** - * 渲染编辑器的DOM到指定容器,必须且只能调用一次 - * @name render - * @grammar editor.render(containerId); //可以指定一个容器ID - * @grammar editor.render(containerDom); //也可以直接指定容器对象 + * 渲染编辑器的DOM到指定容器 + * @method render + * @param { String } containerId 指定一个容器ID + * @remind 执行该方法,会触发ready事件 + * @warning 必须且只能调用一次 + */ + + /** + * 渲染编辑器的DOM到指定容器 + * @method render + * @param { Element } containerDom 直接指定容器对象 + * @remind 执行该方法,会触发ready事件 + * @warning 必须且只能调用一次 */ render: function (container) { var me = this, options = me.options, - getStyleValue=function(attr){ - return parseInt(domUtils.getComputedStyle(container,attr)); + getStyleValue = function (attr) { + return parseInt(domUtils.getComputedStyle(container, attr)); }; if (utils.isString(container)) { container = document.getElementById(container); } if (container) { - if(options.initialFrameWidth){ + if (options.initialFrameWidth) { options.minFrameWidth = options.initialFrameWidth - }else{ + } else { options.minFrameWidth = options.initialFrameWidth = container.offsetWidth; } - if(options.initialFrameHeight){ + if (options.initialFrameHeight) { options.minFrameHeight = options.initialFrameHeight - }else{ + } else { options.initialFrameHeight = options.minFrameHeight = container.offsetHeight; } - container.style.width = /%$/.test(options.initialFrameWidth) ? '100%' : options.initialFrameWidth- - getStyleValue("padding-left")- getStyleValue("padding-right") +'px'; - container.style.height = /%$/.test(options.initialFrameHeight) ? '100%' : options.initialFrameHeight - - getStyleValue("padding-top")- getStyleValue("padding-bottom") +'px'; + container.style.width = /%$/.test(options.initialFrameWidth) ? '100%' : options.initialFrameWidth - + getStyleValue("padding-left") - getStyleValue("padding-right") + 'px'; + container.style.height = /%$/.test(options.initialFrameHeight) ? '100%' : options.initialFrameHeight - + getStyleValue("padding-top") - getStyleValue("padding-bottom") + 'px'; container.style.zIndex = options.zIndex; - var html = ( ie && browser.version < 9 ? '' : '') + - '' + - '' + - ( options.iframeCssUrl ? '' : '' ) + - (options.initialStyle ? '' : '') + - '' + - ''; + var html = ( ie && browser.version < 9 ? '' : '') + + '' + + '' + + ( options.iframeCssUrl ? '' : '' ) + + (options.initialStyle ? '' : '') + + '' + + ''; container.appendChild(domUtils.createElement(document, 'iframe', { id: 'ueditor_' + me.uid, width: "100%", height: "100%", frameborder: "0", - src: 'javascript:void(function(){document.open();' + (options.customDomain && document.domain != location.hostname ? 'document.domain="' + document.domain + '";' : '') + + src: 'javascript:void(function(){document.open();' + (options.customDomain && document.domain != location.hostname ? 'document.domain="' + document.domain + '";' : '') + 'document.write("' + html + '");document.close();}())' })); container.style.overflow = 'hidden'; //解决如果是给定的百分比,会导致高度算不对的问题 - setTimeout(function(){ - if( /%$/.test(options.initialFrameWidth)){ + setTimeout(function () { + if (/%$/.test(options.initialFrameWidth)) { options.minFrameWidth = options.initialFrameWidth = container.offsetWidth; container.style.width = options.initialFrameWidth + 'px'; } - if(/%$/.test(options.initialFrameHeight)){ + if (/%$/.test(options.initialFrameHeight)) { options.minFrameHeight = options.initialFrameHeight = container.offsetHeight; container.style.height = options.initialFrameHeight + 'px'; } }) } }, + /** * 编辑器初始化 + * @method _setup * @private - * @ignore - * @param {Element} doc 编辑器Iframe中的文档对象 + * @param { Element } doc 编辑器Iframe中的文档对象 */ _setup: function (doc) { @@ -291,11 +503,11 @@ for (var form = this.iframe.parentNode; !domUtils.isBody(form); form = form.parentNode) { if (form.tagName == 'FORM') { me.form = form; - if(me.options.autoSyncData){ - domUtils.on(me.window,'blur',function(){ - setValue(form,me); + if (me.options.autoSyncData) { + domUtils.on(me.window, 'blur', function () { + setValue(form, me); }); - }else{ + } else { domUtils.on(form, 'submit', function () { setValue(this, me); }); @@ -388,17 +600,24 @@ !options.isShow && me.setHide(); options.readonly && me.setDisabled(); }, + /** - * 同步编辑器的数据,为提交数据做准备,主要用于你是手动提交的情况 - * @name sync - * @grammar editor.sync(); //从编辑器的容器向上查找,如果找到就同步数据 - * @grammar editor.sync(formID); //formID制定一个要同步数据的form的id,编辑器的数据会同步到你指定form下 - * @desc - * 后台取得数据得键值使用你容器上得''name''属性,如果没有就使用参数传入的''textarea'' + * 同步数据到编辑器所在的form + * 从编辑器的容器节点向上查找form元素,若找到,就同步编辑内容到找到的form里,为提交数据做准备,主要用于是手动提交的情况 + * 后台取得数据的键值,使用你容器上的name属性,如果没有就使用参数里的textarea项 + * @method sync * @example + * ```javascript * editor.sync(); * form.sumbit(); //form变量已经指向了form元素 - * + * ``` + */ + + /** + * 根据传入的formId,在页面上查找要同步数据的表单,若找到,就同步编辑内容到找到的form里,为提交数据做准备 + * 后台取得数据的键值,该键值默认使用给定的编辑器容器的name属性,如果没有name属性则使用参数项里给定的“textarea”项 + * @method sync + * @param { String } formID 指定一个要同步数据的form的id,编辑器的数据会同步到你指定form下 */ sync: function (formId) { var me = this, @@ -408,12 +627,18 @@ }, true); form && setValue(form, me); }, + /** * 设置编辑器高度 - * @name setHeight - * @grammar editor.setHeight(number); //纯数值,不带单位 + * @method setHeight + * @remind 当配置项autoHeightEnabled为真时,该方法无效 + * @param { Number } number 设置的高度值,纯数值,不带单位 + * @example + * ```javascript + * editor.setHeight(number); + * ``` */ - setHeight: function (height,notSetHeight) { + setHeight: function (height, notSetHeight) { if (height !== parseInt(this.iframe.parentNode.style.height)) { this.iframe.parentNode.style.height = height + 'px'; } @@ -422,6 +647,29 @@ this.body.style.height = height + 'px'; }, + /** + * 为编辑器的编辑命令提供快捷键 + * 这个接口是为插件扩展提供的接口,主要是为新添加的插件,如果需要添加快捷键,所提供的接口 + * @method addshortcutkey + * @param { Object } keyset 命令名和快捷键键值对对象,多个按钮的快捷键用“+”分隔 + * @example + * ```javascript + * editor.addshortcutkey({ + * "Bold" : "ctrl+66",//^B + * "Italic" : "ctrl+73", //^I + * }); + * ``` + */ + /** + * 这个接口是为插件扩展提供的接口,主要是为新添加的插件,如果需要添加快捷键,所提供的接口 + * @method addshortcutkey + * @param { String } cmd 触发快捷键时,响应的命令 + * @param { String } keys 快捷键的字符串,多个按钮用“+”分隔 + * @example + * ```javascript + * editor.addshortcutkey("Underline", "ctrl+85"); //^U + * ``` + */ addshortcutkey: function (cmd, keys) { var obj = {}; if (keys) { @@ -431,6 +679,12 @@ } utils.extend(this.shortcutkeys, obj) }, + + /** + * 对编辑器设置keydown事件监听,绑定快捷键和命令,当快捷键组合触发成功,会响应对应的命令 + * @method _bindshortcutKeys + * @private + */ _bindshortcutKeys: function () { var me = this, shortcutkeys = this.shortcutkeys; me.addListener('keydown', function (type, e) { @@ -447,7 +701,7 @@ ) || keyCode == RegExp.$1 ) { - if (me.queryCommandState(i,param) != -1) + if (me.queryCommandState(i, param) != -1) me.execCommand(i, param); domUtils.preventDefault(e); } @@ -457,19 +711,38 @@ } }); }, + /** - * 获取编辑器内容 - * @name getContent - * @grammar editor.getContent() => String //若编辑器中只包含字符"<p><br /></p/>"会返回空。 - * @grammar editor.getContent(fn) => String + * 获取编辑器的内容 + * @method getContent + * @warning 该方法获取到的是经过编辑器内置的过滤规则进行过滤后得到的内容 + * @return { String } 编辑器的内容字符串, 如果编辑器的内容为空,或者是空的标签内容(如:”<p><br/></p>“), 则返回空字符串 * @example - * getContent默认是会现调用hasContents来判断编辑器是否为空,如果是,就直接返回空字符串 - * 你也可以传入一个fn来接替hasContents的工作,定制判断的规则 - * editor.getContent(function(){ - * return false //编辑器没有内容 ,getContent直接返回空 - * }) + * ```javascript + * //编辑器html内容:

123456

+ * var content = editor.getContent(); //返回值:

123456

+ * ``` */ - getContent: function (cmd, fn,notSetCursor,ignoreBlank,formatter) { + + /** + * 获取编辑器的内容。 可以通过参数定义编辑器内置的判空规则 + * @method getContent + * @param { Function } fn 自定的判空规则, 要求该方法返回一个boolean类型的值, + * 代表当前编辑器的内容是否空, + * 如果返回true, 则该方法将直接返回空字符串;如果返回false,则编辑器将返回 + * 经过内置过滤规则处理后的内容。 + * @remind 该方法在处理包含有初始化内容的时候能起到很好的作用。 + * @warning 该方法获取到的是经过编辑器内置的过滤规则进行过滤后得到的内容 + * @return { String } 编辑器的内容字符串 + * @example + * ```javascript + * // editor 是一个编辑器的实例 + * var content = editor.getContent( function ( editor ) { + * return editor.body.innerHTML === '欢迎使用UEditor'; //返回空字符串 + * } ); + * ``` + */ + getContent: function (cmd, fn, notSetCursor, ignoreBlank, formatter) { var me = this; if (cmd && utils.isFunction(cmd)) { fn = cmd; @@ -479,15 +752,20 @@ return ''; } me.fireEvent('beforegetcontent'); - var root = UE.htmlparser(me.body.innerHTML,ignoreBlank); + var root = UE.htmlparser(me.body.innerHTML, ignoreBlank); me.filterOutputRule(root); me.fireEvent('aftergetcontent', cmd); return root.toHtml(formatter); }, + /** * 取得完整的html代码,可以直接显示成完整的html文档 - * @name getAllHtml - * @grammar editor.getAllHtml() => String + * @method getAllHtml + * @return { String } 编辑器的内容html文档字符串 + * @eaxmple + * ```javascript + * editor.getAllHtml(); //返回格式大致是: ...... + * ``` */ getAllHtml: function () { var me = this, @@ -508,10 +786,16 @@ + (headHtmlForIE9 || me.document.getElementsByTagName('head')[0].innerHTML) + headHtml.join('\n') + '' + '' + me.getContent(null, null, true) + ''; }, + /** * 得到编辑器的纯文本内容,但会保留段落格式 - * @name getPlainTxt - * @grammar editor.getPlainTxt() => String + * @method getPlainTxt + * @return { String } 编辑器带段落格式的纯文本内容字符串 + * @example + * ```javascript + * //编辑器html内容:

1

2

+ * console.log(editor.getPlainTxt()); //输出:"1\n2\n + * ``` */ getPlainTxt: function () { var reg = new RegExp(domUtils.fillChar, 'g'), @@ -528,8 +812,13 @@ /** * 获取编辑器中的纯文本内容,没有段落格式 - * @name getContentTxt - * @grammar editor.getContentTxt() => String + * @method getContentTxt + * @return { String } 编辑器不带段落格式的纯文本内容字符串 + * @example + * ```javascript + * //编辑器html内容:

1

2

+ * console.log(editor.getPlainTxt()); //输出:"12 + * ``` */ getContentTxt: function () { var reg = new RegExp(domUtils.fillChar, 'g'); @@ -538,15 +827,29 @@ }, /** - * 将html设置到编辑器中, 如果是用于初始化时给编辑器赋初值,则必须放在ready方法内部执行 - * @name setContent - * @grammar editor.setContent(html) + * 设置编辑器的内容,可修改编辑器当前的html内容 + * @method setContent + * @warning 通过该方法插入的内容,是经过编辑器内置的过滤规则进行过滤后得到的内容 + * @warning 该方法会触发selectionchange事件 + * @param { String } html 要插入的html内容 + * @example + * ```javascript + * editor.getContent('

test

'); + * ``` + */ + + /** + * 设置编辑器的内容,可修改编辑器当前的html内容 + * @method setContent + * @warning 通过该方法插入的内容,是经过编辑器内置的过滤规则进行过滤后得到的内容 + * @warning 该方法会触发selectionchange事件 + * @param { String } html 要插入的html内容 + * @param { Boolean } isAppendTo 若传入true,不清空原来的内容,在最后插入内容,否则,清空内容再插入 * @example - * var editor = new UE.ui.Editor() - * editor.ready(function(){ - * //需要ready后执行,否则可能报错 - * editor.setContent("欢迎使用UEditor!"); - * }) + * ```javascript + * //假设设置前的编辑器内容是

old text

+ * editor.setContent('

new text

', true); //插入的结果是

old text

new text

+ * ``` */ setContent: function (html, isAppendTo, notFireSelectionchange) { var me = this; @@ -560,9 +863,10 @@ me.body.innerHTML = (isAppendTo ? me.body.innerHTML : '') + html; - function isCdataDiv(node){ + function isCdataDiv(node) { return node.tagName == 'DIV' && node.getAttribute('cdata_tag'); } + //给文本或者inline节点套p标签 if (me.options.enterTag == 'p') { @@ -606,15 +910,28 @@ if (browser.gecko && (geckoSel = this.selection.getNative())) { geckoSel.removeAllRanges(); } - if(me.options.autoSyncData){ - me.form && setValue(me.form,me); + if (me.options.autoSyncData) { + me.form && setValue(me.form, me); } }, + /** + * 让编辑器获得焦点,默认focus到编辑器头部 + * @method focus + * @example + * ```javascript + * editor.focus() + * ``` + */ + /** * 让编辑器获得焦点,toEnd确定focus位置 - * @name focus - * @grammar editor.focus([toEnd]) //默认focus到编辑器头部,toEnd为true时focus到内容尾部 + * @method focus + * @param { Boolean } toEnd 默认focus到编辑器头部,toEnd为true时focus到内容尾部 + * @example + * ```javascript + * editor.focus(true) + * ``` */ focus: function (toEnd) { try { @@ -632,8 +949,8 @@ /** * 初始化UE事件及部分事件代理 + * @method _initEvents * @private - * @ignore */ _initEvents: function () { var me = this, @@ -692,18 +1009,21 @@ // } // }()); }, + /** * 触发事件代理 + * @method _proxyDomEvent * @private - * @ignore + * @return { * } fireEvent的返回值 + * @see UE.EventBase:fireEvent(String) */ _proxyDomEvent: function (evt) { return this.fireEvent(evt.type.replace(/^on/, ''), evt); }, /** * 变化选区 + * @method _selectionChange * @private - * @ignore */ _selectionChange: function (delay, evt) { var me = this; @@ -759,6 +1079,15 @@ } }, delay || 50); }, + + /** + * 执行编辑命令 + * @method _callCmdFn + * @private + * @param { String } fnName 函数名称 + * @param { * } args 传给命令函数的参数 + * @return { * } 返回命令函数运行的返回值 + */ _callCmdFn: function (fnName, args) { var cmdName = args[0].toLowerCase(), cmd, cmdFn; @@ -774,8 +1103,14 @@ /** * 执行编辑命令cmdName,完成富文本编辑效果 - * @name execCommand - * @grammar editor.execCommand(cmdName) => {*} + * @method execCommand + * @param { String } cmdName 需要执行的命令 + * @remind 具体命令的使用请参考命令列表 + * @return { * } 返回命令函数运行的返回值 + * @example + * ```javascript + * editor.execCommand(cmdName); + * ``` */ execCommand: function (cmdName) { cmdName = cmdName.toLowerCase(); @@ -787,7 +1122,7 @@ } if (!cmd.notNeedUndo && !me.__hasEnterExecCommand) { me.__hasEnterExecCommand = true; - if (me.queryCommandState.apply(me,arguments) != -1) { + if (me.queryCommandState.apply(me, arguments) != -1) { me.fireEvent('beforeexeccommand', cmdName); result = this._callCmdFn('execCommand', arguments); !me._ignoreContentChange && me.fireEvent('contentchange'); @@ -801,14 +1136,18 @@ !me._ignoreContentChange && me._selectionChange(); return result; }, + /** * 根据传入的command命令,查选编辑器当前的选区,返回命令的状态 - * @name queryCommandState - * @grammar editor.queryCommandState(cmdName) => (-1|0|1) - * @desc - * * ''-1'' 当前命令不可用 - * * ''0'' 当前命令可用 - * * ''1'' 当前命令已经执行过了 + * @method queryCommandState + * @param { String } cmdName 需要查询的命令名称 + * @remind 具体命令的使用请参考命令列表 + * @return { Number } number 返回放前命令的状态,返回值三种情况:(-1|0|1) + * @example + * ```javascript + * editor.queryCommandState(cmdName) => (-1|0|1) + * ``` + * @see COMMAND.LIST */ queryCommandState: function (cmdName) { return this._callCmdFn('queryCommandState', arguments); @@ -816,22 +1155,39 @@ /** * 根据传入的command命令,查选编辑器当前的选区,根据命令返回相关的值 - * @name queryCommandValue + * @method queryCommandValue + * @param { String } cmdName 需要查询的命令名称 + * @remind 具体命令的使用请参考命令列表 + * @remind 只有部分插件有此方法 + * @return { * } 返回每个命令特定的当前状态值 * @grammar editor.queryCommandValue(cmdName) => {*} + * @see COMMAND.LIST */ queryCommandValue: function (cmdName) { return this._callCmdFn('queryCommandValue', arguments); }, + + /** + * 检查编辑区域中是否有内容 + * @method hasContents + * @remind 默认有文本内容,或者有以下节点都不认为是空 + * table,ul,ol,dl,iframe,area,base,col,hr,img,embed,input,link,meta,param + * @return { Boolean } 检查有内容返回true,否则返回false + * @example + * ```javascript + * editor.hasContents() + * ``` + */ + /** - * 检查编辑区域中是否有内容,若包含tags中的节点类型,直接返回true - * @name hasContents - * @desc - * 默认有文本内容,或者有以下节点都不认为是空 - * {table:1,ul:1,ol:1,dl:1,iframe:1,area:1,base:1,col:1,hr:1,img:1,embed:1,input:1,link:1,meta:1,param:1} - * @grammar editor.hasContents() => (true|false) - * @grammar editor.hasContents(tags) => (true|false) //若文档中包含tags数组里对应的tag,直接返回true + * 检查编辑区域中是否有内容,若包含参数tags中的节点类型,直接返回true + * @method hasContents + * @param { Array } tags 传入数组判断时用到的节点类型 + * @return { Boolean } 若文档中包含tags数组里对应的tag,返回true,否则返回false * @example - * editor.hasContents(['span']) //如果编辑器里有这些,不认为是空 + * ```javascript + * editor.hasContents(['span']); + * ``` */ hasContents: function (tags) { if (tags) { @@ -856,17 +1212,28 @@ } return false; }, + /** * 重置编辑器,可用来做多个tab使用同一个编辑器实例 - * @name reset - * @desc - * * 清空编辑器内容 - * * 清空回退列表 - * @grammar editor.reset() + * @method reset + * @remind 此方法会清空编辑器内容,清空回退列表,会触发reset事件 + * @example + * ```javascript + * editor.reset() + * ``` */ reset: function () { this.fireEvent('reset'); }, + + /** + * 设置当前编辑区域可以编辑 + * @method setEnabled + * @example + * ```javascript + * editor.setEnabled() + * ``` + */ setEnabled: function () { var me = this, range; if (me.body.contentEditable == 'false') { @@ -887,14 +1254,33 @@ me.fireEvent('selectionchange'); } }, - /** - * 设置当前编辑区域可以编辑 - * @name enable - * @grammar editor.enable() - */ enable: function () { return this.setEnabled(); }, + + /** 设置当前编辑区域不可编辑 + * @method setDisabled + */ + + /** 设置当前编辑区域不可编辑,except中的命令除外 + * @method setDisabled + * @param { String } except 例外命令的字符串 + * @remind 即使设置了disable,此处配置的例外命令仍然可以执行 + * @example + * ```javascript + * editor.setDisabled('bold'); //禁用工具栏中除加粗之外的所有功能 + * ``` + */ + + /** 设置当前编辑区域不可编辑,except中的命令除外 + * @method setDisabled + * @param { Array } except 例外命令的字符串数组,数组中的命令仍然可以执行 + * @remind 即使设置了disable,此处配置的例外命令仍然可以执行 + * @example + * ```javascript + * editor.setDisabled(['bold','insertimage']); //禁用工具栏中除加粗和插入图片之外的所有功能 + * ``` + */ setDisabled: function (except) { var me = this; except = except ? utils.isArray(except) ? except : [except] : []; @@ -913,22 +1299,15 @@ me.fireEvent('selectionchange'); } }, - /** 设置当前编辑区域不可编辑,except中的命令除外 - * @name disable - * @grammar editor.disable() - * @grammar editor.disable(except) //例外的命令,也即即使设置了disable,此处配置的命令仍然可以执行 - * @example - * //禁用工具栏中除加粗和插入图片之外的所有功能 - * editor.disable(['bold','insertimage']);//可以是单一的String,也可以是Array - */ disable: function (except) { return this.setDisabled(except); }, + /** * 设置默认内容 - * @ignore + * @method _setDefaultContent * @private - * @param {String} cont 要存入的内容 + * @param { String } cont 要存入的内容 */ _setDefaultContent: function () { function clear() { @@ -950,10 +1329,14 @@ me.addListener('firstBeforeExecCommand focus', clear); } }(), + /** - * show方法的兼容版本 - * @private - * @ignore + * 显示编辑器 + * @method setShow + * @example + * ```javascript + * editor.setShow() + * ``` */ setShow: function () { var me = this, range = me.selection.getRange(); @@ -971,20 +1354,18 @@ }, 100); me.container.style.display = ''; } - }, - /** - * 显示编辑器 - * @name show - * @grammar editor.show() - */ show: function () { return this.setShow(); }, + /** - * hide方法的兼容版本 - * @private - * @ignore + * 隐藏编辑器 + * @method setHide + * @example + * ```javascript + * editor.setHide() + * ``` */ setHide: function () { var me = this; @@ -993,20 +1374,19 @@ } me.container.style.display = 'none' }, - /** - * 隐藏编辑器 - * @name hide - * @grammar editor.hide() - */ hide: function () { return this.setHide(); }, + /** - * 根据制定的路径,获取对应的语言资源 - * @name getLang - * @grammar editor.getLang(path) => (JSON|String) 路径根据的是lang目录下的语言文件的路径结构 + * 根据指定的路径,获取对应的语言资源 + * @method getLang + * @param { String } path 路径根据的是lang目录下的语言文件的路径结构 + * @return { Object | String } 根据路径返回语言资源的Json格式对象或者语言字符串 * @example - * editor.getLang('contextMenu.delete') //如果当前是中文,那返回是的是删除 + * ```javascript + * editor.getLang('contextMenu.delete'); //如果当前是中文,那返回是的是'删除' + * ``` */ getLang: function (path) { var lang = UE.I18N[this.options.lang]; @@ -1020,15 +1400,30 @@ } return lang; }, + + /** + * 计算编辑器html内容字符串的长度 + * @method getContentLength + * @return { Number } 返回计算的长度 + * @example + * ```javascript + * //编辑器html内容

132

+ * editor.getContentLength() //返回27 + * ``` + */ /** - * 计算编辑器当前内容的长度 - * @name getContentLength - * @grammar editor.getContentLength(ingoneHtml,tagNames) => + * 计算编辑器当前纯文本内容的长度 + * @method getContentLength + * @param { Boolean } ingoneHtml 传入true时,只按照纯文本来计算 + * @return { Number } 返回计算的长度,内容中有hr/img/iframe标签,长度加1 * @example - * editor.getLang(true) + * ```javascript + * //编辑器html内容

132

+ * editor.getContentLength() //返回3 + * ``` */ getContentLength: function (ingoneHtml, tagNames) { - var count = this.getContent(false,false,true).length; + var count = this.getContent(false, false, true).length; if (ingoneHtml) { tagNames = (tagNames || []).concat([ 'hr', 'img', 'iframe']); count = this.getContentTxt().replace(/[\t\r\n]+/g, '').length; @@ -1038,31 +1433,74 @@ } return count; }, + + /** + * 注册输入过滤规则 + * @method addInputRule + * @param { Function } rule 要添加的过滤规则 + * @example + * ```javascript + * editor.addInputRule(function(root){ + * $.each(root.getNodesByTagName('div'),function(i,node){ + * node.tagName="p"; + * }); + * }); + * ``` + */ addInputRule: function (rule) { this.inputRules.push(rule); }, + + /** + * 执行注册的过滤规则 + * @method filterInputRule + * @param { UE.uNode } root 要过滤的uNode节点 + * @remind 执行editor.setContent方法和执行'inserthtml'命令后,会运行该过滤函数 + * @example + * ```javascript + * editor.filterInputRule(editor.body); + * ``` + * @see UE.Editor:addInputRule + */ filterInputRule: function (root) { for (var i = 0, ci; ci = this.inputRules[i++];) { ci.call(this, root) } }, + + /** + * 注册输出过滤规则 + * @method addOutputRule + * @param { Function } rule 要添加的过滤规则 + * @example + * ```javascript + * editor.addOutputRule(function(root){ + * $.each(root.getNodesByTagName('p'),function(i,node){ + * node.tagName="div"; + * }); + * }); + * ``` + */ addOutputRule: function (rule) { this.outputRules.push(rule) }, + + /** + * 根据输出过滤规则,过滤编辑器内容 + * @method filterOutputRule + * @remind 执行editor.getContent方法的时候,会先运行该过滤函数 + * @param { UE.uNode } root 要过滤的uNode节点 + * @example + * ```javascript + * editor.filterOutputRule(editor.body); + * ``` + * @see UE.Editor:addOutputRule + */ filterOutputRule: function (root) { for (var i = 0, ci; ci = this.outputRules[i++];) { ci.call(this, root) } } - /** - * 得到dialog实例对象 - * @name getDialog - * @grammar editor.getDialog(dialogName) => Object - * @example - * var dialog = editor.getDialog("insertimage"); - * dialog.open(); //打开dialog - * dialog.close(); //关闭dialog - */ }; utils.inherits(Editor, EventBase); })(); diff --git a/_src/core/EventBase.js b/_src/core/EventBase.js index 35d3b1c74..ed776f9ee 100644 --- a/_src/core/EventBase.js +++ b/_src/core/EventBase.js @@ -1,19 +1,48 @@ /** + * UE采用的事件基类 * @file - * @name UE.EventBase - * @short EventBase - * @import editor.js,core/utils.js - * @desc UE采用的事件基类,继承此类的对应类将获取addListener,removeListener,fireEvent方法。 + * @module UE + * @class EventBase + * @since 1.2.6.1 + */ + +/** + * UEditor公用空间,UEditor所有的功能都挂载在该空间下 + * @unfile + * @module UE + */ + +/** + * UE采用的事件基类,继承此类的对应类将获取addListener,removeListener,fireEvent方法。 * 在UE中,Editor以及所有ui实例都继承了该类,故可以在对应的ui对象以及editor对象上使用上述方法。 + * @unfile + * @module UE + * @class EventBase */ -var EventBase = UE.EventBase = function () {}; + +/** + * 通过此构造器,子类可以继承EventBase获取事件监听的方法 + * @constructor + * @example + * ```javascript + * UE.EventBase.call(editor); + * ``` + */ + +var EventBase = UE.EventBase = function () { +}; EventBase.prototype = { + + /** * 注册事件监听器 - * @name addListener - * @grammar editor.addListener(types,fn) //types为事件名称,多个可用空格分隔 + * @method addListener + * @param { String } types 监听的事件名称,同时监听多个事件使用空格分隔 + * @param { Function } fn 监听的事件被触发时,会执行该回调函数 + * @waining 事件被触发时,监听的函数假如返回的值恒等于true,回调函数的队列中后面的函数将不执行 * @example + * ```javascript * editor.addListener('selectionchange',function(){ * console.log("选区已经变化!"); * }) @@ -25,35 +54,69 @@ EventBase.prototype = { * } * console.log(this.getContent) // this是注册的事件的编辑器实例 * }) + * ``` + * @see UE.EventBase:fireEvent(String) */ - addListener:function (types, listener) { + addListener: function (types, listener) { types = utils.trim(types).split(' '); for (var i = 0, ti; ti = types[i++];) { getListener(this, ti, true).push(listener); } }, + + /** * 移除事件监听器 - * @name removeListener - * @grammar editor.removeListener(types,fn) //types为事件名称,多个可用空格分隔 + * @method removeListener + * @param { String } types 移除的事件名称,同时移除多个事件使用空格分隔 + * @param { Function } fn 移除监听事件的函数引用 * @example + * ```javascript * //changeCallback为方法体 * editor.removeListener("selectionchange",changeCallback); + * ``` */ - removeListener:function (types, listener) { + removeListener: function (types, listener) { types = utils.trim(types).split(' '); for (var i = 0, ti; ti = types[i++];) { utils.removeItem(getListener(this, ti) || [], listener); } }, + + /** * 触发事件 - * @name fireEvent - * @grammar editor.fireEvent(types) //types为事件名称,多个可用空格分隔 + * @method fireEvent + * @param { String } types 触发的事件名称,同时触发多个事件使用空格分隔 + * @remind 该方法会触发addListener + * @return { * } 返回触发事件的队列中,最后执行的回调函数的返回值 * @example + * ```javascript * editor.fireEvent("selectionchange"); + * ``` + */ + + /** + * 触发事件 + * @method fireEvent + * @param { String } types 触发的事件名称,同时触发多个事件使用空格分隔 + * @param { *... } options 可选参数,可以传入一个或多个参数,会传给事件触发的回调函数 + * @return { * } 返回触发事件的队列中,最后执行的回调函数的返回值 + * @example + * ```javascript + * + * editor.addListener( "selectionchange", function ( type, arg1, arg2 ) { + * + * console.log( arg1 + " " + arg2 ); + * + * } ); + * + * //触发selectionchange事件, 会执行上面的事件监听器 + * //output: Hello World + * editor.fireEvent("selectionchange", "Hello", "World"); + * ``` */ - fireEvent:function () { + fireEvent: function () { var types = arguments[0]; types = utils.trim(types).split(' '); for (var i = 0, ti; ti = types[i++];) { @@ -62,9 +125,9 @@ EventBase.prototype = { if (listeners) { k = listeners.length; while (k--) { - if(!listeners[k])continue; + if (!listeners[k])continue; t = listeners[k].apply(this, arguments); - if(t === true){ + if (t === true) { return t; } if (t !== undefined) { @@ -79,19 +142,22 @@ EventBase.prototype = { return r; } }; + /** * 获得对象所拥有监听类型的所有监听器 + * @unfile + * @module UE + * @since 1.2.6.1 + * @method getListener * @public - * @function - * @param {Object} obj 查询监听器的对象 - * @param {String} type 事件类型 - * @param {Boolean} force 为true且当前所有type类型的侦听器不存在时,创建一个空监听器数组 - * @returns {Array} 监听器数组 + * @param { Object } obj 查询监听器的对象 + * @param { String } type 事件类型 + * @param { Boolean } force 为true且当前所有type类型的侦听器不存在时,创建一个空监听器数组 + * @return { Array } 监听器数组 */ function getListener(obj, type, force) { var allListeners; type = type.toLowerCase(); return ( ( allListeners = ( obj.__allListeners || force && ( obj.__allListeners = {} ) ) ) && ( allListeners[type] || force && ( allListeners[type] = [] ) ) ); -} - +} \ No newline at end of file diff --git a/_src/core/Range.js b/_src/core/Range.js index d0aa98996..cb54a72b0 100644 --- a/_src/core/Range.js +++ b/_src/core/Range.js @@ -1,23 +1,30 @@ -///import editor.js -///import core/utils.js -///import core/browser.js -///import core/dom/dom.js -///import core/dom/dtd.js -///import core/dom/domUtils.js /** + * Range封装 * @file - * @name UE.dom.Range - * @anthor zhanyi - * @short Range - * @import editor.js,core/utils.js,core/browser.js,core/dom/domUtils.js,core/dom/dtd.js - * @desc Range范围实现类,本类是UEditor底层核心类,统一w3cRange和ieRange之间的差异,包括接口和属性 + * @module UE.dom + * @class Range + * @since 1.2.6.1 */ + +/** + * dom操作封装 + * @unfile + * @module UE.dom + */ + +/** + * Range实现类,本类是UEditor底层核心类,封装不同浏览器之间的Range操作。 + * @unfile + * @module UE.dom + * @class Range + */ + (function () { var guid = 0, fillChar = domUtils.fillChar, fillData; - /** + /* * 更新range的collapse状态 * @param {Range} range range对象 */ @@ -153,16 +160,40 @@ } /** - * @name Range - * @grammar new UE.dom.Range(document) => Range 实例 - * @desc 创建一个跟document绑定的空的Range实例 - * - ***startContainer*** 开始边界的容器节点,可以是elementNode或者是textNode - * - ***startOffset*** 容器节点中的偏移量,如果是elementNode就是childNodes中的第几个,如果是textNode就是nodeValue的第几个字符 - * - ***endContainer*** 结束边界的容器节点,可以是elementNode或者是textNode - * - ***endOffset*** 容器节点中的偏移量,如果是elementNode就是childNodes中的第几个,如果是textNode就是nodeValue的第几个字符 - * - ***document*** 跟range关联的document对象 - * - ***collapsed*** 是否是闭合状态 + * 创建一个跟document绑定的空的Range实例 + * @constructor + * @param { Document } document 新建的选区所属的文档对象 + */ + + /** + * @property { Node } startContainer 当前Range的开始边界的容器节点, 可以是一个元素节点或者是文本节点 + */ + + /** + * @property { Node } startOffset 当前Range的开始边界容器节点的偏移量, 如果是元素节点, + * 该值就是childNodes中的第几个节点, 如果是文本节点就是文本内容的第几个字符 + */ + + /** + * @property { Node } endContainer 当前Range的结束边界的容器节点, 可以是一个元素节点或者是文本节点 */ + + /** + * @property { Node } endOffset 当前Range的结束边界容器节点的偏移量, 如果是元素节点, + * 该值就是childNodes中的第几个节点, 如果是文本节点就是文本内容的第几个字符 + */ + + /** + * @property { Boolean } collapsed 当前Range是否闭合 + * @default true + * @remind Range是闭合的时候, startContainer === endContainer && startOffset === endOffset + */ + + /** + * @property { Document } document 当前Range所属的Document对象 + * @remind 不同range的的document属性可以是不同的 + */ + var Range = dom.Range = function (document) { var me = this; me.startContainer = @@ -173,7 +204,7 @@ me.collapsed = true; }; - /** + /* * 删除fillData * @param doc * @param excludeNode @@ -200,7 +231,7 @@ } } - /** + /* * * @param node * @param dir @@ -216,29 +247,69 @@ } Range.prototype = { + /** - * @name cloneContents - * @grammar range.cloneContents() => DocumentFragment - * @desc 克隆选中的内容到一个fragment里,如果选区是空的将返回null + * 克隆选区的内容到一个DocumentFragment里 + * @method cloneContents + * @return { DocumentFragment | NULL } 如果选区是闭合的将返回null, 否则, 返回包含所clone内容的DocumentFragment元素 + * @example + * ```html + * + * + * xx[xxx]x + * + * + * + * ``` */ cloneContents:function () { return this.collapsed ? null : execContentsAction(this, 0); }, + /** - * @name deleteContents - * @grammar range.deleteContents() => Range - * @desc 删除当前选区范围中的所有内容并返回range实例,这时的range已经变成了闭合状态 + * 删除当前选区范围中的所有内容 + * @method deleteContents + * @remind 执行完该操作后, 当前Range对象变成了闭合状态 + * @return { UE.dom.Range } 当前操作的Range对象 * @example - * DOM Element : - * xx[xxx]x - * //执行方法后 - * xx|x - * 注意range改变了 - * range.startContainer => b - * range.startOffset => 2 - * range.endContainer => b - * range.endOffset => 2 - * range.collapsed => true + * ```html + * + * + * xx[xxx]x + * + * + * + * ``` */ deleteContents:function () { var txt; @@ -254,172 +325,364 @@ } return this; }, + /** - * @name extractContents - * @grammar range.extractContents() => DocumentFragment - * @desc 将当前的内容放到一个fragment里并返回这个fragment,这时的range已经变成了闭合状态 + * 将当前选区的内容提取到一个DocumentFragment里 + * @method extractContents + * @remind 执行该操作后, 选区将变成闭合状态 + * @warning 执行该操作后, 原来选区所选中的内容将从dom树上剥离出来 + * @return { DocumentFragment } 返回包含所提取内容的DocumentFragment对象 * @example - * DOM Element : - * xx[xxx]x - * //执行方法后 - * 返回的fragment里的 dom结构是 - * xxx - * dom树上的结构是 - * xx|x - * 注意range改变了 - * range.startContainer => b - * range.startOffset => 2 - * range.endContainer => b - * range.endOffset => 2 - * range.collapsed => true + * ```html + * + * + * xx[xxx]x + * + * + * */ extractContents:function () { return this.collapsed ? null : execContentsAction(this, 2); }, + /** - * @name setStart - * @grammar range.setStart(node,offset) => Range - * @desc 设置range的开始位置位于node节点内,偏移量为offset - * 如果node是elementNode那offset指的是childNodes中的第几个,如果是textNode那offset指的是nodeValue的第几个字符 + * 设置Range的开始容器节点和偏移量 + * @method setStart + * @remind 如果给定的节点是元素节点,那么offset指的是其子元素中索引为offset的元素, + * 如果是文本节点,那么offset指的是其文本内容的第offset个字符 + * @remind 如果提供的容器节点是一个不能包含子元素的节点, 则该选区的开始容器将被设置 + * 为该节点的父节点, 此时, 其距离开始容器的偏移量也变成了该节点在其父节点 + * 中的索引 + * @param { Node } node 将被设为当前选区开始边界容器的节点对象 + * @param { int } offset 选区的开始位置偏移量 + * @return { UE.dom.Range } 当前range对象 + * @example + * ```html + * + * xxxxxxxxxxxxx[xxx] + * + * + * ``` + * @example + * ```html + * + * xxx[xx]x + * + * + * ``` */ setStart:function (node, offset) { return setEndPoint(true, node, offset, this); }, + /** - * 设置range的结束位置位于node节点,偏移量为offset - * 如果node是elementNode那offset指的是childNodes中的第几个,如果是textNode那offset指的是nodeValue的第几个字符 - * @name setEnd - * @grammar range.setEnd(node,offset) => Range + * 设置Range的结束容器和偏移量 + * @method setEnd + * @param { Node } node 作为当前选区结束边界容器的节点对象 + * @param { int } offset 结束边界的偏移量 + * @see UE.dom.Range:setStart(Node,int) + * @return { UE.dom.Range } 当前range对象 */ setEnd:function (node, offset) { return setEndPoint(false, node, offset, this); }, + /** * 将Range开始位置设置到node节点之后 - * @name setStartAfter - * @grammar range.setStartAfter(node) => Range + * @method setStartAfter + * @remind 该操作将会把给定节点的父节点作为range的开始容器, 且偏移量是该节点在其父节点中的位置索引+1 + * @param { Node } node 选区的开始边界将紧接着该节点之后 + * @return { UE.dom.Range } 当前range对象 * @example - * xxx|xx - * 执行setStartAfter(i)后 - * range.startContainer =>b - * range.startOffset =>2 + * ```html + * + * xxxxxxx[xxxx] + * + * + * ``` */ setStartAfter:function (node) { return this.setStart(node.parentNode, domUtils.getNodeIndex(node) + 1); }, + /** * 将Range开始位置设置到node节点之前 - * @name setStartBefore - * @grammar range.setStartBefore(node) => Range - * @example - * xxx|xx - * 执行setStartBefore(i)后 - * range.startContainer =>b - * range.startOffset =>1 + * @method setStartBefore + * @remind 该操作将会把给定节点的父节点作为range的开始容器, 且偏移量是该节点在其父节点中的位置索引 + * @param { Node } node 新的选区开始位置在该节点之前 + * @see UE.dom.Range:setStartAfter(Node) + * @return { UE.dom.Range } 当前range对象 */ setStartBefore:function (node) { return this.setStart(node.parentNode, domUtils.getNodeIndex(node)); }, + /** * 将Range结束位置设置到node节点之后 - * @name setEndAfter - * @grammar range.setEndAfter(node) => Range + * @method setEndAfter + * @remind 该操作将会把给定节点的父节点作为range的结束容器, 且偏移量是该节点在其父节点中的位置索引+1 + * @param { Node } node 目标节点 + * @see UE.dom.Range:setStartAfter(Node) + * @return { UE.dom.Range } 当前range对象 * @example - * xxx|xx - * setEndAfter(i)后 - * range.endContainer =>b - * range.endtOffset =>2 + * ```html + * + * [xxxxxxx]xxxx + * + * + * ``` */ setEndAfter:function (node) { return this.setEnd(node.parentNode, domUtils.getNodeIndex(node) + 1); }, + /** * 将Range结束位置设置到node节点之前 - * @name setEndBefore - * @grammar range.setEndBefore(node) => Range - * @example - * xxx|xx - * 执行setEndBefore(i)后 - * range.endContainer =>b - * range.endtOffset =>1 + * @method setEndBefore + * @remind 该操作将会把给定节点的父节点作为range的结束容器, 且偏移量是该节点在其父节点中的位置索引 + * @param { Node } node 目标节点 + * @see UE.dom.Range:setEndAfter(Node) + * @return { UE.dom.Range } 当前range对象 */ setEndBefore:function (node) { return this.setEnd(node.parentNode, domUtils.getNodeIndex(node)); }, + /** - * 将Range开始位置设置到node节点内的开始位置 - * @name setStartAtFirst - * @grammar range.setStartAtFirst(node) => Range + * 设置Range的开始位置到node节点内的第一个子节点之前 + * @method setStartAtFirst + * @remind 选区的开始容器将变成给定的节点, 且偏移量为0 + * @remind 如果给定的节点是元素节点, 则该节点必须是允许包含子节点的元素。 + * @param { Node } node 目标节点 + * @see UE.dom.Range:setStartBefore(Node) + * @return { UE.dom.Range } 当前range对象 + * @example + * ```html + * + * xxxxx[xx]xxxx + * + * + * ``` */ setStartAtFirst:function (node) { return this.setStart(node, 0); }, + /** - * 将Range开始位置设置到node节点内的结束位置 - * @name setStartAtLast - * @grammar range.setStartAtLast(node) => Range + * 设置Range的开始位置到node节点内的最后一个节点之后 + * @method setStartAtLast + * @remind 选区的开始容器将变成给定的节点, 且偏移量为该节点的子节点数 + * @remind 如果给定的节点是元素节点, 则该节点必须是允许包含子节点的元素。 + * @param { Node } node 目标节点 + * @see UE.dom.Range:setStartAtFirst(Node) + * @return { UE.dom.Range } 当前range对象 */ setStartAtLast:function (node) { return this.setStart(node, node.nodeType == 3 ? node.nodeValue.length : node.childNodes.length); }, + /** - * 将Range结束位置设置到node节点内的开始位置 - * @name setEndAtFirst - * @grammar range.setEndAtFirst(node) => Range + * 设置Range的结束位置到node节点内的第一个节点之前 + * @method setEndAtFirst + * @param { Node } node 目标节点 + * @remind 选区的结束容器将变成给定的节点, 且偏移量为0 + * @remind node必须是一个元素节点, 且必须是允许包含子节点的元素。 + * @see UE.dom.Range:setStartAtFirst(Node) + * @return { UE.dom.Range } 当前range对象 */ setEndAtFirst:function (node) { return this.setEnd(node, 0); }, + /** - * 将Range结束位置设置到node节点内的结束位置 - * @name setEndAtLast - * @grammar range.setEndAtLast(node) => Range + * 设置Range的结束位置到node节点内的最后一个节点之后 + * @method setEndAtLast + * @param { Node } node 目标节点 + * @remind 选区的结束容器将变成给定的节点, 且偏移量为该节点的子节点数量 + * @remind node必须是一个元素节点, 且必须是允许包含子节点的元素。 + * @see UE.dom.Range:setStartAtFirst(Node) + * @return { UE.dom.Range } 当前range对象 */ setEndAtLast:function (node) { return this.setEnd(node, node.nodeType == 3 ? node.nodeValue.length : node.childNodes.length); }, /** - * 选中完整的指定节点,并返回包含该节点的range - * @name selectNode - * @grammar range.selectNode(node) => Range + * 选中给定节点 + * @method selectNode + * @remind 此时, 选区的开始容器和结束容器都是该节点的父节点, 其startOffset是该节点在父节点中的位置索引, + * 而endOffset为startOffset+1 + * @param { Node } node 需要选中的节点 + * @return { UE.dom.Range } 当前range对象,此时的range仅包含当前给定的节点对象 + * @example + * ```html + * + * xxxxx[xx]xxxx + * + * + * ``` */ selectNode:function (node) { return this.setStartBefore(node).setEndAfter(node); }, + /** - * 选中node内部的所有节点,并返回对应的range - * @name selectNodeContents - * @grammar range.selectNodeContents(node) => Range + * 选中给定节点内部的所有节点 + * @method selectNodeContents + * @remind 此时, 选区的开始容器和结束容器都是该节点, 其startOffset为0, + * 而endOffset是该节点的子节点数。 + * @param { Node } node 目标节点, 当前range将包含该节点内的所有节点 + * @return { UE.dom.Range } 当前range对象, 此时range仅包含给定节点的所有子节点 * @example - * xx[xxxx]xxx - * 执行后 - * [xxxxxxxxx] - * range.startContainer =>b - * range.startOffset =>0 - * range.endContainer =>b - * range.endOffset =>3 + * ```html + * + * xxxxx[xx]xxxx + * + * + * ``` */ selectNodeContents:function (node) { return this.setStart(node, 0).setEndAtLast(node); }, /** - * 克隆一个新的range对象 - * @name cloneRange - * @grammar range.cloneRange() => Range + * clone当前Range对象 + * @method cloneRange + * @remind 返回的range是一个全新的range对象, 其内部所有属性与当前被clone的range相同。 + * @return { UE.dom.Range } 当前range对象的一个副本 */ cloneRange:function () { var me = this; return new Range(me.document).setStart(me.startContainer, me.startOffset).setEnd(me.endContainer, me.endOffset); - }, /** - * 让选区闭合到尾部,若toStart为真,则闭合到头部 - * @name collapse - * @grammar range.collapse() => Range - * @grammar range.collapse(true) => Range //闭合选区到头部 + * 向当前选区的结束处闭合选区 + * @method collapse + * @return { UE.dom.Range } 当前range对象 + * @example + * ```html + * + * xxxxx[xx]xxxx + * + * + * ``` + */ + + /** + * 闭合当前选区,根据给定的toStart参数项决定是向当前选区开始处闭合还是向结束处闭合, + * 如果toStart的值为true,则向开始位置闭合, 反之,向结束位置闭合。 + * @method collapse + * @param { Boolean } toStart 是否向选区开始处闭合 + * @return { UE.dom.Range } 当前range对象,此时range对象处于闭合状态 + * @see UE.dom.Range:collapse() + * @example + * ```html + * + * xxxxx[xx]xxxx + * + * + * ``` */ collapse:function (toStart) { var me = this; @@ -435,14 +698,42 @@ }, /** - * 调整range的边界,使其"收缩"到最小的位置 - * @name shrinkBoundary - * @grammar range.shrinkBoundary() => Range //range开始位置和结束位置都调整,参见adjustmentBoundary - * @grammar range.shrinkBoundary(true) => Range //仅调整开始位置,忽略结束位置 + * 调整range的开始位置和结束位置,使其"收缩"到最小的位置 + * @method shrinkBoundary + * @return { UE.dom.Range } 当前range对象 + * @example + * ```html + * xxxx[xxxxx] => xxxx[xxxxx] + * ``` + * + * @example + * ```html + * + * x[xx]xxx + * + * + * ``` + * * @example - * xx[xxxxx] ==> xx[xxxxx] - * x[xx]xxx ==> x[xx]xxx - * [xxxxxxxxxxx] ==> [xxxxxxxxxxx] + * ```html + * [xxxxxxxxxxx] => [xxxxxxxxxxx] + * ``` + */ + + /** + * 调整range的开始位置和结束位置,使其"收缩"到最小的位置, + * 如果ignoreEnd的值为true,则忽略对结束位置的调整 + * @method shrinkBoundary + * @param { Boolean } ignoreEnd 是否忽略对结束位置的调整 + * @return { UE.dom.Range } 当前range对象 + * @see UE.dom.domUtils.Range:shrinkBoundary() */ shrinkBoundary:function (ignoreEnd) { var me = this, child, @@ -468,26 +759,86 @@ } return me; }, + + /** + * 获取离当前选区内包含的所有节点最近的公共祖先节点, + * @method getCommonAncestor + * @remind 返回的公共祖先节点一定不是range自身的容器节点, 但有可能是一个文本节点 + * @return { Node } 当前range对象内所有节点的公共祖先节点 + * @example + * ```html + * //选区示例 + * xxxx[xxx]xxxxxx + * + * ``` + */ + /** - * 获取当前range所在位置的公共祖先节点,当前range位置可以位于文本节点内,也可以包含整个元素节点,也可以位于两个节点之间 - * @name getCommonAncestor - * @grammar range.getCommonAncestor([includeSelf, ignoreTextNode]) => Element + * 获取当前选区所包含的所有节点的公共祖先节点, 可以根据给定的参数 includeSelf 决定获取到 + * 的公共祖先节点是否可以是当前选区的startContainer或endContainer节点, 如果 includeSelf + * 的取值为true, 则返回的节点可以是自身的容器节点, 否则, 则不能是容器节点 + * @method getCommonAncestor + * @param { Boolean } includeSelf 是否允许获取到的公共祖先节点是当前range对象的容器节点 + * @return { Node } 当前range对象内所有节点的公共祖先节点 + * @see UE.dom.Range:getCommonAncestor() * @example - * xx[xxxx]xxxx ==>getCommonAncestor() ==> b - * [] - * range.startContainer ==> b - * range.startOffset ==> 0 - * range.endContainer ==> b - * range.endOffset ==> 1 - * range.getCommonAncestor() ==> b - * range.getCommonAncestor(true) ==> img - * xxx|xx - * range.startContainer ==> textNode - * range.startOffset ==> 3 - * range.endContainer ==> textNode - * range.endOffset ==> 3 - * range.getCommonAncestor() ==> textNode - * range.getCommonAncestor(null,true) ==> b + * ```html + * + * + * + * xxxxxxxxx[xxx]xxxxxxxx + * + * + * + * + * ``` + */ + + /** + * 获取当前选区所包含的所有节点的公共祖先节点, 可以根据给定的参数 includeSelf 决定获取到 + * 的公共祖先节点是否可以是当前选区的startContainer或endContainer节点, 如果 includeSelf + * 的取值为true, 则返回的节点可以是自身的容器节点, 否则, 则不能是容器节点; 同时可以根据 + * ignoreTextNode 参数的取值决定是否忽略类型为文本节点的祖先节点。 + * @method getCommonAncestor + * @param { Boolean } includeSelf 是否允许获取到的公共祖先节点是当前range对象的容器节点 + * @param { Boolean } ignoreTextNode 获取祖先节点的过程中是否忽略类型为文本节点的祖先节点 + * @return { Node } 当前range对象内所有节点的公共祖先节点 + * @see UE.dom.Range:getCommonAncestor() + * @see UE.dom.Range:getCommonAncestor(Boolean) + * @example + * ```html + * + * + * + * xxxxxxxx[x]xxxxxxxxxxx + * + * + * + * + * ``` */ getCommonAncestor:function (includeSelf, ignoreTextNode) { var me = this, @@ -504,22 +855,51 @@ } return domUtils.getCommonAncestor(start, end); }, + /** - * 调整边界容器,如果是textNode,就调整到elementNode上 - * @name trimBoundary - * @grammar range.trimBoundary([ignoreEnd]) => Range //true忽略结束边界 + * 调整当前Range的开始和结束边界容器,如果是容器节点是文本节点,就调整到包含该文本节点的父节点上 + * @method trimBoundary + * @remind 该操作有可能会引起文本节点被切开 + * @return { UE.dom.Range } 当前range对象 * @example - * DOM Element : - * |xxx - * startContainer = xxx; startOffset = 0 - * //执行后本方法后 - * startContainer = ; startOffset = 0 + * ```html + * + * //选区示例 + * xxx[xxxxx]xxx + * + * + * ``` + */ + + /** + * 调整当前Range的开始和结束边界容器,如果是容器节点是文本节点,就调整到包含该文本节点的父节点上, + * 可以根据 ignoreEnd 参数的值决定是否调整对结束边界的调整 + * @method trimBoundary + * @param { Boolean } ignoreEnd 是否忽略对结束边界的调整 + * @return { UE.dom.Range } 当前range对象 * @example - * Dom Element : - * xx|x - * startContainer = xxx; startOffset = 2 - * //执行本方法后,xxx被实实在在地切分成两个TextNode - * startContainer = ; startOffset = 1 + * ```html + * + * //选区示例 + * xxx[xxxxx]xxx + * + * + * ``` */ trimBoundary:function (ignoreEnd) { this.txtToElmBoundary(); @@ -562,21 +942,21 @@ } return this; }, + /** - * 如果选区在文本的边界上,就扩展选区到文本的父节点上 - * @name txtToElmBoundary - * @example - * Dom Element : - * |xxx - * startContainer = xxx; startOffset = 0 - * //本方法执行后 - * startContainer = ; startOffset = 0 - * @example - * Dom Element : - * xxx| - * startContainer = xxx; startOffset = 3 - * //本方法执行后 - * startContainer = ; startOffset = 1 + * 如果选区在文本的边界上,就扩展选区到文本的父节点上, 如果当前选区是闭合的, 则什么也不做 + * @method txtToElmBoundary + * @remind 该操作不会修改dom节点 + * @return { UE.dom.Range } 当前range对象 + */ + + /** + * 如果选区在文本的边界上,就扩展选区到文本的父节点上, 如果当前选区是闭合的, 则根据参数项 + * ignoreCollapsed 的值决定是否执行该调整 + * @method txtToElmBoundary + * @param { Boolean } ignoreCollapsed 是否忽略选区的闭合状态, 如果该参数取值为true, 则 + * 不论选区是否闭合, 都会执行该操作, 反之, 则不会对闭合的选区执行该操作 + * @return { UE.dom.Range } 当前range对象 */ txtToElmBoundary:function (ignoreCollapsed) { function adjust(r, c) { @@ -603,16 +983,11 @@ }, /** - * 在当前选区的开始位置前插入一个节点或者fragment,range的开始位置会在插入节点的前边 - * @name insertNode - * @grammar range.insertNode(node) => Range //node可以是textNode,elementNode,fragment - * @example - * Range : - * xxx[x

xxxx

xxxx]x

sdfsdf

- * 待插入Node : - *

ssss

- * 执行本方法后的Range : - * xxx[

ssss

x

xxxx

xxxx]x

sdfsdf

+ * 在当前选区的开始位置前插入节点,新插入的节点会被该range包含 + * @method insertNode + * @param { Node } node 需要插入的节点 + * @remind 插入的节点可以是一个DocumentFragment依次插入多个节点 + * @return { UE.dom.Range } 当前range对象 */ insertNode:function (node) { var first = node, length = 1; @@ -634,18 +1009,34 @@ } return this.setStartBefore(first); }, + /** - * 设置光标闭合位置,toEnd设置为true时光标将闭合到选区的结尾 - * @name setCursor - * @grammar range.setCursor([toEnd]) => Range //toEnd为true时,光标闭合到选区的末尾 + * 闭合选区到当前选区的开始位置, 并且定位光标到闭合后的位置 + * @method setCursor + * @return { UE.dom.Range } 当前range对象 + * @see UE.dom.Range:collapse() + */ + + /** + * 闭合选区,可以根据参数toEnd的值控制选区是向前闭合还是向后闭合, 并且定位光标到闭合后的位置。 + * @method setCursor + * @param { Boolean } toEnd 是否向后闭合, 如果为true, 则闭合选区时, 将向结束容器方向闭合, + * 反之,则向开始容器方向闭合 + * @return { UE.dom.Range } 当前range对象 + * @see UE.dom.Range:collapse(Boolean) */ setCursor:function (toEnd, noFillData) { return this.collapse(!toEnd).select(noFillData); }, + /** * 创建当前range的一个书签,记录下当前range的位置,方便当dom树改变时,还能找回原来的选区位置 - * @name createBookmark - * @grammar range.createBookmark([serialize]) => Object //{start:开始标记,end:结束标记,id:serialize} serialize为真时,开始结束标记是插入节点的id,否则是插入节点的引用 + * @method createBookmark + * @param { Boolean } serialize 控制返回的标记位置是对当前位置的引用还是ID,如果该值为true,则 + * 返回标记位置的ID, 反之则返回标记位置节点的引用 + * @return { Object } 返回一个书签记录键值对, 其包含的key有: start => 开始标记的ID或者引用, + * end => 结束标记的ID或引用, id => 当前标记的类型, 如果为true,则表示 + * 返回的记录的类型为ID, 反之则为引用 */ createBookmark:function (serialize, same) { var endNode, @@ -669,10 +1060,13 @@ id:serialize } }, + /** - * 移动边界到书签位置,并删除插入的书签节点 - * @name moveToBookmark - * @grammar range.moveToBookmark(bookmark) => Range //让当前的range选到给定bookmark的位置,bookmark对象是由range.createBookmark创建的 + * 调整当前range的边界到书签位置,并删除该书签对象所标记的位置内的节点 + * @method moveToBookmark + * @param { BookMark } bookmark createBookmark所创建的标签对象 + * @return { UE.dom.Range } 当前range对象 + * @see UE.dom.Range:createBookmark(Boolean) */ moveToBookmark:function (bookmark) { var start = bookmark.id ? this.document.getElementById(bookmark.start) : bookmark.start, @@ -687,12 +1081,20 @@ } return this; }, + /** - * 调整range的边界,使其"放大"到最近的父block节点 - * @name enlarge - * @grammar range.enlarge() => Range - * @example - *

xxxx[xxxxxx]

xxx

==> [

xxxxxxxxxx

]

xxx

+ * 调整range的边界,使其"放大"到最近的父节点 + * @method enlarge + * @remind 会引起选区的变化 + * @return { UE.dom.Range } 当前range对象 + */ + + /** + * 调整range的边界,使其"放大"到最近的父节点,根据参数 toBlock 的取值, 可以 + * 要求扩大之后的父节点是block节点 + * @method enlarge + * @param { Boolean } toBlock 是否要求扩大之后的父节点必须是block节点 + * @return { UE.dom.Range } 当前range对象 */ enlarge:function (toBlock, stopFn) { var isBody = domUtils.isBody, @@ -773,13 +1175,12 @@ } return this; }, + /** * 调整Range的边界,使其"缩小"到最合适的位置 - * @name adjustmentBoundary - * @grammar range.adjustmentBoundary() => Range //参见shrinkBoundary - * @example - * xx[xxxxx] ==> xx[xxxxx] - * x[xx]xxx ==> x[xx]xxx + * @method adjustmentBoundary + * @return { UE.dom.Range } 当前range对象 + * @see UE.dom.Range:shrinkBoundary() */ adjustmentBoundary:function () { if (!this.collapsed) { @@ -799,14 +1200,34 @@ return this; }, /** - * 给range选区中的内容添加给定的标签,主要用于inline标签 - * @name applyInlineStyle - * @grammar range.applyInlineStyle(tagName) => Range //tagName为需要添加的样式标签名 - * @grammar range.applyInlineStyle(tagName,attrs) => Range //attrs为属性json对象 - * @desc - *

xxxx[xxxx]x

==> range.applyInlineStyle("strong") ==>

xxxx[xxxx]x

- *

xx[ddyyyy]x

==> range.applyInlineStyle("strong") ==>

xx[ddyyyy]x

- *

xxxx[xxxx]x

==> range.applyInlineStyle("strong",{"style":"font-size:12px"}) ==>

xxxx[xxxx]x

+ * 给range选区中的内容添加给定的inline标签 + * @method applyInlineStyle + * @param { String } tagName 需要添加的标签名 + * @example + * ```html + *

xxxx[xxxx]x

==> range.applyInlineStyle("strong") ==>

xxxx[xxxx]x

+ * ``` + */ + + /** + * 给range选区中的内容添加给定的inline标签, 并且为标签附加上一些初始化属性。 + * @method applyInlineStyle + * @param { String } tagName 需要添加的标签名 + * @param { Object } attrs 跟随新添加的标签的属性 + * @return { UE.dom.Range } 当前选区 + * @example + * ```html + *

xxxx[xxxx]x

+ * + * ==> + * + * + * range.applyInlineStyle("strong",{"style":"font-size:12px"}) + * + * ==> + * + *

xxxx[xxxx]x

+ * ``` */ applyInlineStyle:function (tagName, attrs, list) { if (this.collapsed)return this; @@ -873,12 +1294,24 @@ } return this.moveToBookmark(bookmark); }, + + /** + * 移除当前选区内指定的inline标签,但保留其中的内容 + * @method removeInlineStyle + * @param { String } tagName 需要移除的标签名 + * @return { UE.dom.Range } 当前的range对象 + * @example + * ```html + * xx[xxxxyyyzz]z => range.removeInlineStyle(["em"]) => xx[xxxxyyyzz]z + * ``` + */ + /** - * 对当前range选中的节点,去掉给定的标签节点,但标签中的内容保留,主要用于处理inline元素 - * @name removeInlineStyle - * @grammar range.removeInlineStyle(tagNames) => Range //tagNames 为需要去掉的样式标签名,支持"b"或者["b","i","u"] - * @desc - * xx[xxxxyyyzz]z => range.removeInlineStyle(["em"]) => xx[xxxxyyyzz]z + * 移除当前选区内指定的一组inline标签,但保留其中的内容 + * @method removeInlineStyle + * @param { Array } tagNameArr 需要移除的标签名的数组 + * @return { UE.dom.Range } 当前的range对象 + * @see UE.dom.Range:removeInlineStyle(String) */ removeInlineStyle:function (tagNames) { if (this.collapsed)return this; @@ -940,12 +1373,11 @@ } return this.moveToBookmark(bookmark); }, + /** - * 得到一个自闭合的节点,常用于获取自闭和的节点,例如图片节点 - * @name getClosedNode - * @grammar range.getClosedNode() => node|null - * @example - * xxxx[]xxx + * 获取当前选中的自闭合的节点 + * @method getClosedNode + * @return { Node | NULL } 如果当前选中的是自闭合节点, 则返回该节点, 否则返回NULL */ getClosedNode:function () { var node; @@ -960,10 +1392,11 @@ } return node; }, + /** - * 根据当前range选中内容节点(在页面上表现为反白显示) - * @name select - * @grammar range.select(); => Range + * 在页面上高亮range所表示的选区 + * @method select + * @return { UE.dom.Range } 返回当前Range对象 */ select:browser.ie ? function (noFillData, textRange) { var nativeRange; @@ -1099,10 +1532,20 @@ } return this; }, + + /** + * 滚动到当前range开始的位置 + * @method scrollToView + * @param { Window } win 当前range对象所属的window对象 + * @return { UE.dom.Range } 当前Range对象 + */ + /** - * 滚动条跳到当然range开始的位置 - * @name scrollToView - * @grammar range.scrollToView([win,offset]) => Range //针对window对象,若不指定,将以编辑区域的窗口为准,offset偏移量 + * 滚动到距离当前range开始位置 offset 的位置处 + * @method scrollToView + * @param { Window } win 当前range对象所属的window对象 + * @param { Number } offset 距离range开始位置处的偏移量, 如果为正数, 则向下偏移, 反之, 则向上偏移 + * @return { UE.dom.Range } 当前Range对象 */ scrollToView:function (win, offset) { win = win ? window : domUtils.getWindow(this.document); @@ -1115,6 +1558,12 @@ domUtils.remove(span); return me; }, + /** + * 判断当前选区内容是否占位符 + * @private + * @method inFillChar + * @return { Boolean } 如果是占位符返回true,否则返回false + */ inFillChar : function(){ var start = this.startContainer; if(this.collapsed && start.nodeType == 3 @@ -1124,6 +1573,31 @@ } return false; }, + + /** + * 保存 + * @method createAddress + * @private + * @return { Boolean } 返回开始和结束的位置 + * @example + * ```html + * + *

+ * aaaa + * + * + * bbbb + * + * + *

+ * + * + * + * ``` + */ createAddress : function(ignoreEnd,ignoreTxt){ var addr = {},me = this; @@ -1183,6 +1657,33 @@ } return addr; }, + /** + * 保存 + * @method createAddress + * @private + * @return { Boolean } 返回开始和结束的位置 + * @example + * ```html + * + *

+ * aaaa + * + * + * bbbb + * + * + *

+ * + * + * + * ``` + */ moveToAddress : function(addr,ignoreEnd){ var me = this; function getNode(address,isStart){ @@ -1215,6 +1716,13 @@ !ignoreEnd && addr.endAddress && getNode(addr.endAddress); return me; }, + + /** + * 判断给定的Range对象是否和当前Range对象表示的是同一个选区 + * @method equals + * @param { UE.dom.Range } 需要判断的Range对象 + * @return { Boolean } 如果给定的Range对象与当前Range对象表示的是同一个选区, 则返回true, 否则返回false + */ equals : function(rng){ for(var p in this){ if(this.hasOwnProperty(p)){ @@ -1225,6 +1733,87 @@ return true; }, + + /** + * 遍历range内的节点。每当遍历一个节点时, 都会执行参数项 doFn 指定的函数, 该函数的接受当前遍历的节点 + * 作为其参数。 + * @method traversal + * @param { Function } doFn 对每个遍历的节点要执行的方法, 该方法接受当前遍历的节点作为其参数 + * @return { UE.dom.Range } 当前range对象 + * @example + * ```html + * + * + * + * + * + * + * + * + * + * + * ``` + */ + + /** + * 遍历range内的节点。 + * 每当遍历一个节点时, 都会执行参数项 doFn 指定的函数, 该函数的接受当前遍历的节点 + * 作为其参数。 + * 可以通过参数项 filterFn 来指定一个过滤器, 只有符合该过滤器过滤规则的节点才会触 + * 发doFn函数的执行 + * @method traversal + * @param { Function } doFn 对每个遍历的节点要执行的方法, 该方法接受当前遍历的节点作为其参数 + * @param { Function } filterFn 过滤器, 该函数接受当前遍历的节点作为参数, 如果该节点满足过滤 + * 规则, 请返回true, 该节点会触发doFn, 否则, 请返回false, 则该节点不 + * 会触发doFn。 + * @return { UE.dom.Range } 当前range对象 + * @see UE.dom.Range:traversal(Function) + * @example + * ```html + * + * + * + * + * + * + * + * + * + * + * ``` + */ traversal:function(doFn,filterFn){ if (this.collapsed) return this; diff --git a/_src/core/Selection.js b/_src/core/Selection.js index cabf1d127..3fed1ddd4 100644 --- a/_src/core/Selection.js +++ b/_src/core/Selection.js @@ -1,12 +1,18 @@ -///import editor.js -///import core/browser.js -///import core/dom/dom.js -///import core/dom/dtd.js -///import core/dom/domUtils.js -///import core/dom/Range.js /** - * @class baidu.editor.dom.Selection Selection类 + * 选集 + * @file + * @module UE.dom + * @class Selection + * @since 1.2.6.1 */ + +/** + * 选区集合 + * @unfile + * @module UE.dom + * @class Selection + */ + (function () { function getBoundaryInformation( range, start ) { @@ -73,7 +79,7 @@ return {container:child, offset:position > 0 ? -distance : child.nodeValue.length + distance} } - /** + /* * 将ieRange转换为Range对象 * @param {Range} ieRange ieRange对象 * @param {Range} range Range对象 @@ -93,7 +99,7 @@ return range; } - /** + /* * 获得ieRange * @param {Selection} sel Selection对象 * @return {ieRange} 得到ieRange @@ -137,10 +143,12 @@ Selection.prototype = { /** * 获取原生seleciton对象 - * @public - * @function - * @name baidu.editor.dom.Selection.getNative - * @return {Selection} 获得selection对象 + * @method getNative + * @return { Object } 获得selection对象 + * @example + * ```javascript + * editor.selection.getNative(); + * ``` */ getNative:function () { var doc = this.document; @@ -152,10 +160,12 @@ }, /** * 获得ieRange - * @public - * @function - * @name baidu.editor.dom.Selection.getIERange - * @return {ieRange} 返回ie原生的Range + * @method getIERange + * @return { Object } 返回ie原生的Range + * @example + * ```javascript + * editor.selection.getIERange(); + * ``` */ getIERange:function () { var ieRange = _getIERange( this ); @@ -169,9 +179,7 @@ /** * 缓存当前选区的range和选区的开始节点 - * @public - * @function - * @name baidu.editor.dom.Selection.cache + * @method cache */ cache:function () { this.clear(); @@ -180,6 +188,15 @@ this._cachedStartElementPath = this.getStartElementPath(); }, + /** + * 获取选区开始位置的父节点到body + * @method getStartElementPath + * @return { Array } 返回父节点集合 + * @example + * ```javascript + * editor.selection.getStartElementPath(); + * ``` + */ getStartElementPath:function () { if ( this._cachedStartElementPath ) { return this._cachedStartElementPath; @@ -192,15 +209,14 @@ }, /** * 清空缓存 - * @public - * @function - * @name baidu.editor.dom.Selection.clear + * @method clear */ clear:function () { this._cachedStartElementPath = this._cachedRange = this._cachedStartElement = null; }, /** * 编辑器是否得到了选区 + * @method isFocus */ isFocus:function () { try { @@ -212,10 +228,12 @@ }, /** * 获取选区对应的Range - * @public - * @function - * @name baidu.editor.dom.Selection.getRange - * @returns {baidu.editor.dom.Range} 得到Range对象 + * @method getRange + * @return { Object } 得到Range对象 + * @example + * ```javascript + * editor.selection.getRange(); + * ``` */ getRange:function () { var me = this; @@ -270,13 +288,14 @@ } return this._bakRange = range; }, - /** * 获取开始元素,用于状态反射 - * @public - * @function - * @name baidu.editor.dom.Selection.getStart - * @return {Element} 获得开始元素 + * @method getStart + * @return { Element } 获得开始元素 + * @example + * ```javascript + * editor.selection.getStart(); + * ``` */ getStart:function () { if ( this._cachedStartElement ) { @@ -320,10 +339,12 @@ }, /** * 得到选区中的文本 - * @public - * @function - * @name baidu.editor.dom.Selection.getText - * @return {String} 选区中包含的文本 + * @method getText + * @return { String } 选区中包含的文本 + * @example + * ```javascript + * editor.selection.getText(); + * ``` */ getText:function () { var nativeSel, nativeRange; @@ -333,6 +354,14 @@ } return ''; }, + /** + * 清除选区 + * @method clearRange + * @example + * ```javascript + * editor.selection.clearRange(); + * ``` + */ clearRange : function(){ this.getNative()[browser.ie ? 'empty' : 'removeAllRanges'](); } diff --git a/_src/core/ajax.js b/_src/core/ajax.js index a5a354663..b6670742c 100644 --- a/_src/core/ajax.js +++ b/_src/core/ajax.js @@ -1,17 +1,16 @@ /** * @file - * @name UE.ajax - * @short Ajax - * @desc UEditor内置的ajax请求模块 - * @import core/utils.js - * @user: taoqili - * @date: 11-8-18 - * @time: 下午3:18 + * @module UE.ajax + * @since 1.2.6.1 + */ + +/** + * 提供对ajax请求的支持 + * @module UE.ajax */ UE.ajax = function() { - /** - * 创建一个ajaxRequest对象 - */ + + //创建一个ajaxRequest对象 var fnStr = 'XMLHttpRequest()'; try { new ActiveXObject("Msxml2.XMLHTTP"); @@ -26,7 +25,7 @@ UE.ajax = function() { var creatAjaxRequest = new Function('return new ' + fnStr); - /** + /* * 将json参数转化成适合ajax提交的参数列表 * @param json */ @@ -46,30 +45,63 @@ UE.ajax = function() { return { - /** - * @name request - * @desc 发出ajax请求,ajaxOpt中默认包含method,timeout,async,data,onsuccess以及onerror等六个,支持自定义添加参数 - * @grammar UE.ajax.request(url,ajaxOpt); + /** + * 根据给定的参数项,向指定的url发起一个ajax请求。 ajax请求完成后,会根据请求结果调用相应回调: 如果请求 + * 成功, 则调用onsuccess回调, 失败则调用 onerror 回调 + * @method request + * @param { URLString } url ajax请求的url地址 + * @param { Object } ajaxOptions ajax请求选项的键值对,支持的选项如下: * @example - * UE.ajax.request('http://www.xxxx.com/test.php',{ - * //可省略,默认POST - * method:'POST', - * //可以自定义参数 - * content:'这里是提交的内容', - * //也可以直接传json,但是只能命名为data,否则当做一般字符串处理 - * data:{ - * name:'UEditor', - * age:'1' - * } - * onsuccess:function(xhr){ - * console.log(xhr.responseText); + * ```javascript + * //向sayhello.php发起一个异步的Ajax GET请求, 请求超时时间为10s, 请求完成后执行相应的回调。 + * UE.ajax.requeset( 'sayhello.php', { + * + * //请求方法。可选值: 'GET', 'POST',默认值是'POST' + * method: 'GET', + * + * //超时时间。 默认为5000, 单位是ms + * timeout: 10000, + * + * //是否是异步请求。 true为异步请求, false为同步请求 + * async: true, + * + * //请求携带的数据。如果请求为GET请求, data会经过stringify后附加到请求url之后。 + * data: { + * name: 'ueditor' + * }, + * + * //请求成功后的回调, 该回调接受当前的XMLHttpRequest对象作为参数。 + * onsuccess: function ( xhr ) { + * console.log( xhr.responseText ); * }, - * onerror:function(xhr){ - * console.log(xhr.responseText); + * + * //请求失败或者超时后的回调。 + * onerror: function ( xhr ) { + * alert( 'Ajax请求失败' ); * } - * }) - * @param ajaxOptions - */ + * + * } ); + * ``` + */ + + /** + * 根据给定的参数项发起一个ajax请求, 参数项里必须包含一个url地址。 ajax请求完成后,会根据请求结果调用相应回调: 如果请求 + * 成功, 则调用onsuccess回调, 失败则调用 onerror 回调。 + * @method request + * @warning 如果在参数项里未提供一个key为“url”的地址值,则该请求将直接退出。 + * @param { Object } ajaxOptions ajax请求选项的键值对,支持的选项如下: + * @example + * ```javascript + * + * //向sayhello.php发起一个异步的Ajax POST请求, 请求超时时间为5s, 请求完成后不执行任何回调。 + * UE.ajax.requeset( 'sayhello.php', { + * + * //请求的地址, 该项是必须的。 + * url: 'sayhello.php' + * + * } ); + * ``` + */ request:function(url, ajaxOptions) { var ajaxRequest = creatAjaxRequest(), //是否超时 diff --git a/_src/core/browser.js b/_src/core/browser.js index ecb749e96..843fcecf7 100644 --- a/_src/core/browser.js +++ b/_src/core/browser.js @@ -1,53 +1,85 @@ /** + * 浏览器判断模块 * @file - * @name UE.browser - * @short Browser - * @desc UEditor中采用的浏览器判断模块 + * @module UE.browser + * @since 1.2.6.1 + */ + +/** + * 提供浏览器检测的模块 + * @unfile + * @module UE.browser */ var browser = UE.browser = function(){ var agent = navigator.userAgent.toLowerCase(), opera = window.opera, browser = { + /** - * 检测浏览器是否为IE - * @name ie - * @grammar UE.browser.ie => true|false + * @property {boolean} ie 检测当前浏览器是否为IE + * @example + * ```javascript + * if ( UE.browser.ie ) { + * console.log( '当前浏览器是IE' ); + * } + * ``` */ ie : !!window.ActiveXObject, /** - * 检测浏览器是否为Opera - * @name opera - * @grammar UE.browser.opera => true|false + * @property {boolean} opera 检测当前浏览器是否为Opera + * @example + * ```javascript + * if ( UE.browser.opera ) { + * console.log( '当前浏览器是Opera' ); + * } + * ``` */ opera : ( !!opera && opera.version ), /** - * 检测浏览器是否为webkit内核 - * @name webkit - * @grammar UE.browser.webkit => true|false + * @property {boolean} webkit 检测当前浏览器是否是webkit内核的浏览器 + * @example + * ```javascript + * if ( UE.browser.webkit ) { + * console.log( '当前浏览器是webkit内核浏览器' ); + * } + * ``` */ webkit : ( agent.indexOf( ' applewebkit/' ) > -1 ), /** - * 检测浏览器是否为mac系统下的浏览器 - * @name mac - * @grammar UE.browser.mac => true|false + * @property {boolean} mac 检测当前浏览器是否是运行在mac平台下 + * @example + * ```javascript + * if ( UE.browser.mac ) { + * console.log( '当前浏览器运行在mac平台下' ); + * } + * ``` */ mac : ( agent.indexOf( 'macintosh' ) > -1 ), /** - * 检测浏览器是否处于怪异模式 - * @name quirks - * @grammar UE.browser.quirks => true|false + * @property {boolean} quirks 检测当前浏览器是否处于“怪异模式”下 + * @example + * ```javascript + * if ( UE.browser.quirks ) { + * console.log( '当前浏览器运行处于“怪异模式”' ); + * } + * ``` */ quirks : ( document.compatMode == 'BackCompat' ) }; + /** - * 检测浏览器是否处为gecko内核 - * @name gecko - * @grammar UE.browser.gecko => true|false - */ + * @property {boolean} gecko 检测当前浏览器内核是否是gecko内核 + * @example + * ```javascript + * if ( UE.browser.gecko ) { + * console.log( '当前浏览器内核是gecko内核' ); + * } + * ``` + */ browser.gecko =( navigator.product == 'Gecko' && !browser.webkit && !browser.opera ); var version = 0; @@ -56,37 +88,63 @@ var browser = UE.browser = function(){ if ( browser.ie ){ version = parseFloat( agent.match( /msie (\d+)/ )[1] ); /** - * 检测浏览器是否为 IE9 模式 - * @name ie9Compat - * @grammar UE.browser.ie9Compat => true|false + * @property { boolean } ie9Compat 检测浏览器模式是否为 IE9 兼容模式 + * @warning 如果浏览器不是IE, 则该值为undefined + * @example + * ```javascript + * if ( UE.browser.ie9Compat ) { + * console.log( '当前浏览器运行在IE9兼容模式下' ); + * } + * ``` */ browser.ie9Compat = document.documentMode == 9; + /** - * 检测浏览器是否为 IE8 浏览器 - * @name ie8 - * @grammar UE.browser.ie8 => true|false + * @property { boolean } ie8 检测浏览器是否是IE8浏览器 + * @warning 如果浏览器不是IE, 则该值为undefined + * @example + * ```javascript + * if ( UE.browser.ie8 ) { + * console.log( '当前浏览器是IE8浏览器' ); + * } + * ``` */ browser.ie8 = !!document.documentMode; /** - * 检测浏览器是否为 IE8 模式 - * @name ie8Compat - * @grammar UE.browser.ie8Compat => true|false + * @property { boolean } ie8Compat 检测浏览器模式是否为 IE8 兼容模式 + * @warning 如果浏览器不是IE, 则该值为undefined + * @example + * ```javascript + * if ( UE.browser.ie8Compat ) { + * console.log( '当前浏览器运行在IE8兼容模式下' ); + * } + * ``` */ browser.ie8Compat = document.documentMode == 8; /** - * 检测浏览器是否运行在 兼容IE7模式 - * @name ie7Compat - * @grammar UE.browser.ie7Compat => true|false + * @property { boolean } ie7Compat 检测浏览器模式是否为 IE7 兼容模式 + * @warning 如果浏览器不是IE, 则该值为undefined + * @example + * ```javascript + * if ( UE.browser.ie7Compat ) { + * console.log( '当前浏览器运行在IE7兼容模式下' ); + * } + * ``` */ browser.ie7Compat = ( ( version == 7 && !document.documentMode ) || document.documentMode == 7 ); /** - * 检测浏览器是否IE6模式或怪异模式 - * @name ie6Compat - * @grammar UE.browser.ie6Compat => true|false + * @property { boolean } ie6Compat 检测浏览器模式是否为 IE6 模式 或者怪异模式 + * @warning 如果浏览器不是IE, 则该值为undefined + * @example + * ```javascript + * if ( UE.browser.ie6Compat ) { + * console.log( '当前浏览器运行在IE6模式或者怪异模式下' ); + * } + * ``` */ browser.ie6Compat = ( version < 7 || browser.quirks ); @@ -101,18 +159,30 @@ var browser = UE.browser = function(){ version = geckoRelease[0] * 10000 + ( geckoRelease[1] || 0 ) * 100 + ( geckoRelease[2] || 0 ) * 1; } } + /** - * 检测浏览器是否为chrome - * @name chrome - * @grammar UE.browser.chrome => true|false + * @property { Number } chrome 检测当前浏览器是否为Chrome, 如果是,则返回Chrome的大版本号 + * @warning 如果浏览器不是chrome, 则该值为undefined + * @example + * ```javascript + * if ( UE.browser.chrome ) { + * console.log( '当前浏览器是Chrome' ); + * } + * ``` */ if (/chrome\/(\d+\.\d)/i.test(agent)) { browser.chrome = + RegExp['\x241']; } + /** - * 检测浏览器是否为safari - * @name safari - * @grammar UE.browser.safari => true|false + * @property { Number } safari 检测当前浏览器是否为Safari, 如果是,则返回Safari的大版本号 + * @warning 如果浏览器不是safari, 则该值为undefined + * @example + * ```javascript + * if ( UE.browser.safari ) { + * console.log( '当前浏览器是Safari' ); + * } + * ``` */ if(/(\d+\.\d)?(?:\.\d)?\s+safari\/?(\d+\.\d+)?/i.test(agent) && !/chrome/i.test(agent)){ browser.safari = + (RegExp['\x241'] || RegExp['\x242']); @@ -128,27 +198,28 @@ var browser = UE.browser = function(){ version = parseFloat( agent.match( / applewebkit\/(\d+)/ )[1] ); /** - * 浏览器版本判断 - * IE系列返回值为5,6,7,8,9,10等 - * gecko系列会返回10900,158900等. - * webkit系列会返回其build号 (如 522等). - * @name version - * @grammar UE.browser.version => number + * @property { Number } version 检测当前浏览器版本号 + * @remind + *
    + *
  • IE系列返回值为5,6,7,8,9,10等
  • + *
  • gecko系列会返回10900,158900等
  • + *
  • webkit系列会返回其build号 (如 522等)
  • + *
* @example - * if ( UE.browser.ie && UE.browser.version == 6 ){ - * alert( "Ouch!居然是万恶的IE6!" ); - * } + * ```javascript + * console.log( '当前浏览器版本号是: ' + UE.browser.version ); + * ``` */ browser.version = version; /** - * 是否是兼容模式的浏览器 - * @name isCompatible - * @grammar UE.browser.isCompatible => true|false + * @property { boolean } isCompatible 检测当前浏览器是否能够与UEditor良好兼容 * @example - * if ( UE.browser.isCompatible ){ - * alert( "你的浏览器相当不错哦!" ); + * ```javascript + * if ( UE.browser.isCompatible ) { + * console.log( '浏览器与UEditor能够良好兼容' ); * } + * ``` */ browser.isCompatible = !browser.mobile && ( diff --git a/_src/core/domUtils.js b/_src/core/domUtils.js index 7eb91d6e7..d06a7a107 100644 --- a/_src/core/domUtils.js +++ b/_src/core/domUtils.js @@ -1,11 +1,17 @@ /** + * Dom操作工具包 * @file - * @name UE.dom.domUtils - * @short DomUtils - * @import editor.js, core/utils.js,core/browser.js,core/dom/dtd.js - * @desc UEditor封装的底层dom操作库 + * @module UE.dom.domUtils + * @since 1.2.6.1 */ -function getDomNode(node, start, ltr, startFromChild, fn, guard) { + +/** + * Dom操作工具包 + * @unfile + * @module UE.dom.domUtils + */ + +function getNode( node, start, ltr, startFromChild, fn, guard ) { var tmpNode = startFromChild && node[start], parent; !tmpNode && (tmpNode = node[ltr]); @@ -16,7 +22,7 @@ function getDomNode(node, start, ltr, startFromChild, fn, guard) { tmpNode = parent[ltr]; } if (tmpNode && fn && !fn(tmpNode)) { - return getDomNode(tmpNode, start, ltr, false, fn); + return getNode(tmpNode, start, ltr, false, fn); } return tmpNode; } @@ -69,19 +75,50 @@ var domUtils = dom.domUtils = { }, /** * 获取节点A相对于节点B的位置关系 - * @name getPosition - * @grammar UE.dom.domUtils.getPosition(nodeA,nodeB) => Number - * @example - * switch (returnValue) { - * case 0: //相等,同一节点 - * case 1: //无关,节点不相连 - * case 2: //跟随,即节点A头部位于节点B头部的后面 - * case 4: //前置,即节点A头部位于节点B头部的前面 - * case 8: //被包含,即节点A被节点B包含 - * case 10://组合类型,即节点A满足跟随节点B且被节点B包含。实际上,如果被包含,必定跟随,所以returnValue事实上不会存在8的情况。 - * case 16://包含,即节点A包含节点B - * case 20://组合类型,即节点A满足前置节点A且包含节点B。同样,如果包含,必定前置,所以returnValue事实上也不会存在16的情况 - * } + * @method getPosition + * @param { Node } nodeA 需要查询位置关系的节点A + * @param { Node } nodeB 需要查询位置关系的节点B + * @return { Number } 节点A与节点B的关系 + * @example + * ```javascript + * //output: 20 + * var position = UE.dom.domUtils.getPosition( document.documentElement, document.body ); + * + * switch ( position ) { + * + * //0 + * case UE.dom.domUtils.POSITION_IDENTICAL: + * console.log('元素相同'); + * break; + * //1 + * case UE.dom.domUtils.POSITION_DISCONNECTED: + * console.log('两个节点在不同的文档中'); + * break; + * //2 + * case UE.dom.domUtils.POSITION_FOLLOWING: + * console.log('节点A在节点B之后'); + * break; + * //4 + * case UE.dom.domUtils.POSITION_PRECEDING; + * console.log('节点A在节点B之前'); + * break; + * //8 + * case UE.dom.domUtils.POSITION_IS_CONTAINED: + * console.log('节点A被节点B包含'); + * break; + * case 10: + * console.log('节点A被节点B包含且节点A在节点B之后'); + * break; + * //16 + * case UE.dom.domUtils.POSITION_CONTAINS: + * console.log('节点A包含节点B'); + * break; + * case 20: + * console.log('节点A包含节点B且节点A在节点B之前'); + * break; + * + * } + * ``` */ getPosition:function (nodeA, nodeB) { // 如果两个节点是同一个节点 @@ -132,9 +169,35 @@ var domUtils = dom.domUtils = { }, /** - * 返回节点node在父节点中的索引位置 - * @name getNodeIndex - * @grammar UE.dom.domUtils.getNodeIndex(node) => Number //索引值从0开始 + * 检测节点node在父节点中的索引位置 + * @method getNodeIndex + * @param { Node } node 需要检测的节点对象 + * @return { Number } 该节点在父节点中的位置 + * @see UE.dom.domUtils.getNodeIndex(Node,Boolean) + */ + + /** + * 检测节点node在父节点中的索引位置, 根据给定的mergeTextNode参数决定是否要合并多个连续的文本节点为一个节点 + * @method getNodeIndex + * @param { Node } node 需要检测的节点对象 + * @param { Boolean } mergeTextNode 是否合并多个连续的文本节点为一个节点 + * @return { Number } 该节点在父节点中的位置 + * @example + * ```javascript + * + * var node = document.createElement("div"); + * + * node.appendChild( document.createTextNode( "hello" ) ); + * node.appendChild( document.createTextNode( "world" ) ); + * node.appendChild( node = document.createElement( "div" ) ); + * + * //output: 2 + * console.log( UE.dom.domUtils.getNodeIndex( node ) ); + * + * //output: 1 + * console.log( UE.dom.domUtils.getNodeIndex( node, true ) ); + * + * ``` */ getNodeIndex:function (node, ignoreTextNode) { var preNode = node, @@ -152,19 +215,87 @@ var domUtils = dom.domUtils = { }, /** - * 检测节点node是否在节点doc的树上,实质上是检测是否被doc包含 - * @name inDoc - * @grammar UE.dom.domUtils.inDoc(node,doc) => true|false + * 检测节点node是否在给定的document对象上 + * @method inDoc + * @param { Node } node 需要检测的节点对象 + * @param { DomDocument } doc 需要检测的document对象 + * @return { Boolean } 该节点node是否在给定的document的dom树上 + * @example + * ```javascript + * + * var node = document.createElement("div"); + * + * //output: false + * console.log( UE.do.domUtils.inDoc( node, document ) ); + * + * document.body.appendChild( node ); + * + * //output: true + * console.log( UE.do.domUtils.inDoc( node, document ) ); + * + * ``` */ inDoc:function (node, doc) { return domUtils.getPosition(node, doc) == 10; }, + + /** + * 根据给定的过滤规则filterFn, 查找符合该过滤规则的node节点的第一个祖先节点, + * 查找的起点是给定node节点的父节点。 + * @method findParent + * @param { Node } node 需要查找的节点 + * @param { Function } filterFn 自定义的过滤方法。 + * @warning 查找的终点是到body节点为止 + * @remind 自定义的过滤方法filterFn接受一个Node对象作为参数, 该对象代表当前执行检测的祖先节点。 如果该 + * 节点满足过滤条件, 则要求返回true, 这时将直接返回该节点作为findParent()的结果, 否则, 请返回false。 + * @return { Node | Null } 如果找到符合过滤条件的节点, 就返回该节点, 否则返回NULL + * @example + * ```javascript + * var filterNode = UE.dom.domUtils.findParent( document.body.firstChild, function ( node ) { + * + * //由于查找的终点是body节点, 所以永远也不会匹配当前过滤器的条件, 即这里永远会返回false + * return node.tagName === "HTML"; + * + * } ); + * + * //output: true + * console.log( filterNode === null ); + * ``` + */ + /** - * 查找node节点的祖先节点 - * @name findParent - * @grammar UE.dom.domUtils.findParent(node) => Element // 直接返回node节点的父节点 - * @grammar UE.dom.domUtils.findParent(node,filterFn) => Element //filterFn为过滤函数,node作为参数,返回true时才会将node作为符合要求的节点返回 - * @grammar UE.dom.domUtils.findParent(node,filterFn,includeSelf) => Element //includeSelf指定是否包含自身 + * 根据给定的过滤规则filterFn, 查找符合该过滤规则的node节点的第一个祖先节点, + * 如果includeSelf的值为true,则查找的起点是给定的节点node, 否则, 起点是node的父节点 + * @method findParent + * @param { Node } node 需要查找的节点 + * @param { Function } filterFn 自定义的过滤方法。 + * @param { Boolean } includeSelf 查找过程是否包含自身 + * @warning 查找的终点是到body节点为止 + * @remind 自定义的过滤方法filterFn接受一个Node对象作为参数, 该对象代表当前执行检测的祖先节点。 如果该 + * 节点满足过滤条件, 则要求返回true, 这时将直接返回该节点作为findParent()的结果, 否则, 请返回false。 + * @remind 如果includeSelf为true, 则过滤器第一次执行时的参数会是节点本身。 + * 反之, 过滤器第一次执行时的参数将是该节点的父节点。 + * @return { Node | Null } 如果找到符合过滤条件的节点, 就返回该节点, 否则返回NULL + * @example + * ```html + * + * + *
+ *
+ * + * + * + * ``` */ findParent:function (node, filterFn, includeSelf) { if (node && !domUtils.isBody(node)) { @@ -178,27 +309,66 @@ var domUtils = dom.domUtils = { } return null; }, + + /** + * 查找node的节点名为tagName的第一个祖先节点, 查找的起点是node节点的父节点。 + * @method findParentByTagName + * @param { Node } node 需要查找的节点对象 + * @param { Array } tagNames 需要查找的父节点的名称数组 + * @warning 查找的终点是到body节点为止 + * @return { Node | NULL } 如果找到符合条件的节点, 则返回该节点, 否则返回NULL + * @example + * ```javascript + * var node = UE.dom.domUtils.findParentByTagName( document.getElementsByTagName("div")[0], [ "BODY" ] ); + * //output: BODY + * console.log( node.tagName ); + * ``` + */ + /** - * 通过tagName查找node节点的祖先节点 - * @name findParentByTagName - * @grammar UE.dom.domUtils.findParentByTagName(node,tagNames) => Element //tagNames支持数组,区分大小写 - * @grammar UE.dom.domUtils.findParentByTagName(node,tagNames,includeSelf) => Element //includeSelf指定是否包含自身 - * @grammar UE.dom.domUtils.findParentByTagName(node,tagNames,includeSelf,excludeFn) => Element //excludeFn指定例外过滤条件,返回true时忽略该节点 + * 查找node的节点名为tagName的祖先节点, 如果includeSelf的值为true,则查找的起点是给定的节点node, + * 否则, 起点是node的父节点。 + * @method findParentByTagName + * @param { Node } node 需要查找的节点对象 + * @param { Array } tagNames 需要查找的父节点的名称数组 + * @param { Boolean } includeSelf 查找过程是否包含node节点自身 + * @warning 查找的终点是到body节点为止 + * @return { Node | NULL } 如果找到符合条件的节点, 则返回该节点, 否则返回NULL + * @example + * ```javascript + * var queryTarget = document.getElementsByTagName("div")[0]; + * var node = UE.dom.domUtils.findParentByTagName( queryTarget, [ "DIV" ], true ); + * //output: true + * console.log( queryTarget === node ); + * ``` */ + findParentByTagName:function (node, tagNames, includeSelf, excludeFn) { tagNames = utils.listToMap(utils.isArray(tagNames) ? tagNames : [tagNames]); return domUtils.findParent(node, function (node) { return tagNames[node.tagName] && !(excludeFn && excludeFn(node)); }, includeSelf); }, + /** - * 查找节点node的祖先节点集合 - * @name findParents + * 查找节点node的祖先节点集合, 查找的起点是给定节点的父节点,结果集中不包含给定的节点。 + * @method findParents + * @param { Node } node 需要查找的节点对象 + * @return { Array } 给定节点的祖先节点数组 * @grammar UE.dom.domUtils.findParents(node) => Array //返回一个祖先节点数组集合,不包含自身 * @grammar UE.dom.domUtils.findParents(node,includeSelf) => Array //返回一个祖先节点数组集合,includeSelf指定是否包含自身 * @grammar UE.dom.domUtils.findParents(node,includeSelf,filterFn) => Array //返回一个祖先节点数组集合,filterFn指定过滤条件,返回true的node将被选取 * @grammar UE.dom.domUtils.findParents(node,includeSelf,filterFn,closerFirst) => Array //返回一个祖先节点数组集合,closerFirst为true的话,node的直接父亲节点是数组的第0个 */ + + /** + * 查找节点node的祖先节点集合, 如果includeSelf的值为true, + * 则返回的结果集中允许出现当前给定的节点, 否则, 该节点不会出现在其结果集中。 + * @method findParents + * @param { Node } node 需要查找的节点对象 + * @param { Boolean } includeSelf 查找的结果中是否允许包含当前查找的节点对象 + * @return { Array } 给定节点的祖先节点数组 + */ findParents:function (node, includeSelf, filterFn, closerFirst) { var parents = includeSelf && ( filterFn && filterFn(node) || !filterFn ) ? [node] : []; while (node = domUtils.findParent(node, filterFn)) { @@ -209,18 +379,50 @@ var domUtils = dom.domUtils = { /** * 在节点node后面插入新节点newNode - * @name insertAfter - * @grammar UE.dom.domUtils.insertAfter(node,newNode) => newNode + * @method insertAfter + * @param { Node } node 目标节点 + * @param { Node } newNode 新插入的节点, 该节点将置于目标节点之后 + * @return { Node } 新插入的节点 */ insertAfter:function (node, newNode) { return node.parentNode.insertBefore(newNode, node.nextSibling); }, /** - * 删除节点node,并根据keepChildren指定是否保留子节点 - * @name remove - * @grammar UE.dom.domUtils.remove(node) => node - * @grammar UE.dom.domUtils.remove(node,keepChildren) => node + * 删除节点node及其下属的所有节点 + * @method remove + * @param { Node } node 需要删除的节点对象 + * @return { Node } 返回刚删除的节点对象 + * @example + * ```html + *
+ *
你好
+ *
+ * + * ``` + */ + + /** + * 删除节点node,并根据keepChildren的值决定是否保留子节点 + * @method remove + * @param { Node } node 需要删除的节点对象 + * @param { Boolean } keepChildren 是否需要保留子节点 + * @return { Node } 返回刚删除的节点对象 + * @example + * ```html + *
+ *
你好
+ *
+ * + * ``` */ remove:function (node, keepChildren) { var parent = node.parentNode, @@ -237,35 +439,108 @@ var domUtils = dom.domUtils = { }, /** - * 取得node节点在dom树上的下一个节点,即多叉树遍历 - * @name getNextDomNode - * @grammar UE.dom.domUtils.getNextDomNode(node) => Element + * 取得node节点的下一个兄弟节点, 如果该节点其后没有兄弟节点, 则递归查找其父节点之后的第一个兄弟节点, + * 直到找到满足条件的节点或者递归到BODY节点之后才会结束。 + * @method getNextDomNode + * @param { Node } node 需要获取其后的兄弟节点的节点对象 + * @return { Node | NULL } 如果找满足条件的节点, 则返回该节点, 否则返回NULL + * @example + * ```html + * + *
+ * + *
+ * xxx + * + * + * ``` * @example + * ```html + * + *
+ * + * xxx + *
+ * xxx + * + * + * ``` + */ + + /** + * 取得node节点的下一个兄弟节点, 如果startFromChild的值为ture,则先获取其子节点, + * 如果有子节点则直接返回第一个子节点;如果没有子节点或者startFromChild的值为false, + * 则执行getNextDomNode(Node node)的查找过程。 + * @method getNextDomNode + * @param { Node } node 需要获取其后的兄弟节点的节点对象 + * @param { Boolean } startFromChild 查找过程是否从其子节点开始 + * @return { Node | NULL } 如果找满足条件的节点, 则返回该节点, 否则返回NULL + * @see UE.dom.domUtils.getNextDomNode(Node) */ getNextDomNode:function (node, startFromChild, filterFn, guard) { - return getDomNode(node, 'firstChild', 'nextSibling', startFromChild, filterFn, guard); + return getNode(node, 'firstChild', 'nextSibling', startFromChild, filterFn, guard); }, + /** - * 检测节点node是否属于bookmark节点 - * @name isBookmarkNode - * @grammar UE.dom.domUtils.isBookmarkNode(node) => true|false + * 检测节点node是否属是UEditor定义的bookmark节点 + * @method isBookmarkNode + * @private + * @param { Node } node 需要检测的节点对象 + * @return { Boolean } 是否是bookmark节点 + * @example + * ```html + * + * + * ``` */ isBookmarkNode:function (node) { return node.nodeType == 1 && node.id && /^_baidu_bookmark_/i.test(node.id); }, + /** - * 获取节点node所在的window对象 - * @name getWindow - * @grammar UE.dom.domUtils.getWindow(node) => window对象 + * 获取节点node所属的window对象 + * @method getWindow + * @param { Node } node 节点对象 + * @return { Window } 当前节点所属的window对象 + * @example + * ```javascript + * //output: true + * console.log( UE.dom.domUtils.getWindow( document.body ) === window ); + * ``` */ getWindow:function (node) { var doc = node.ownerDocument || node; return doc.defaultView || doc.parentWindow; }, + /** - * 得到nodeA与nodeB公共的祖先节点 - * @name getCommonAncestor - * @grammar UE.dom.domUtils.getCommonAncestor(nodeA,nodeB) => Element + * 获取离nodeA与nodeB最近的公共的祖先节点 + * @method getCommonAncestor + * @param { Node } nodeA 第一个节点 + * @param { Node } nodeB 第二个节点 + * @remind 如果给定的两个节点是同一个节点, 将直接返回该节点。 + * @return { Node | NULL } 如果未找到公共节点, 返回NULL, 否则返回最近的公共祖先节点。 + * @example + * ```javascript + * var commonAncestor = UE.dom.domUtils.getCommonAncestor( document.body, document.body.firstChild ); + * //output: true + * console.log( commonAncestor.tagName.toLowerCase() === 'body' ); + * ``` */ getCommonAncestor:function (nodeA, nodeB) { if (nodeA === nodeB) @@ -290,14 +565,54 @@ var domUtils = dom.domUtils = { return i == 0 ? null : parentsA[i - 1]; }, + /** - * 清除node节点左右兄弟为空的inline节点 - * @name clearEmptySibling - * @grammar UE.dom.domUtils.clearEmptySibling(node) + * 清除node节点左右连续为空的兄弟inline节点 + * @method clearEmptySibling + * @param { Node } node 执行的节点对象, 如果该节点的左右连续的兄弟节点是空的inline节点, + * 则这些兄弟节点将被删除 * @grammar UE.dom.domUtils.clearEmptySibling(node,ignoreNext) //ignoreNext指定是否忽略右边空节点 * @grammar UE.dom.domUtils.clearEmptySibling(node,ignoreNext,ignorePre) //ignorePre指定是否忽略左边空节点 * @example - * xxxxbb --> xxxxbb + * ```html + * + *
+ * + * + * + * xxx + * + * + * + * ``` + */ + + /** + * 清除node节点左右连续为空的兄弟inline节点, 如果ignoreNext的值为true, + * 则忽略对右边兄弟节点的操作。 + * @method clearEmptySibling + * @param { Node } node 执行的节点对象, 如果该节点的左右连续的兄弟节点是空的inline节点, + * @param { Boolean } ignoreNext 是否忽略忽略对右边的兄弟节点的操作 + * 则这些兄弟节点将被删除 + * @see UE.dom.domUtils.clearEmptySibling(Node) + */ + + /** + * 清除node节点左右连续为空的兄弟inline节点, 如果ignoreNext的值为true, + * 则忽略对右边兄弟节点的操作, 如果ignorePre的值为true,则忽略对左边兄弟节点的操作。 + * @method clearEmptySibling + * @param { Node } node 执行的节点对象, 如果该节点的左右连续的兄弟节点是空的inline节点, + * @param { Boolean } ignoreNext 是否忽略忽略对右边的兄弟节点的操作 + * @param { Boolean } ignorePre 是否忽略忽略对左边的兄弟节点的操作 + * 则这些兄弟节点将被删除 + * @see UE.dom.domUtils.clearEmptySibling(Node) */ clearEmptySibling:function (node, ignoreNext, ignorePre) { function clear(next, dir) { @@ -313,10 +628,22 @@ var domUtils = dom.domUtils = { !ignoreNext && clear(node.nextSibling, 'nextSibling'); !ignorePre && clear(node.previousSibling, 'previousSibling'); }, + /** - * 将一个文本节点node拆分成两个文本节点,offset指定拆分位置 - * @name split - * @grammar UE.dom.domUtils.split(node,offset) => TextNode //返回从切分位置开始的后一个文本节点 + * 将一个文本节点textNode拆分成两个文本节点,offset指定拆分位置 + * @method split + * @param { Node } textNode 需要拆分的文本节点对象 + * @param { int } offset 需要拆分的位置, 位置计算从0开始 + * @return { Node } 拆分后形成的新节点 + * @example + * ```html + *
abcdef
+ * + * ``` */ split:function (node, offset) { var doc = node.ownerDocument; @@ -335,17 +662,38 @@ var domUtils = dom.domUtils = { }, /** - * 检测节点node是否为空节点(包括空格、换行、占位符等字符) - * @name isWhitespace - * @grammar UE.dom.domUtils.isWhitespace(node) => true|false + * 检测文本节点textNode是否为空节点(包括空格、换行、占位符等字符) + * @method isWhitespace + * @param { Node } node 需要检测的节点对象 + * @return { Boolean } 检测的节点是否为空 + * @example + * ```html + *
+ * + *
+ * + * ``` */ isWhitespace:function (node) { return !new RegExp('[^ \t\n\r' + domUtils.fillChar + ']').test(node.nodeValue); }, + /** * 获取元素element相对于viewport的位置坐标 - * @name getXY - * @grammar UE.dom.domUtils.getXY(element) => Object //返回坐标对象{x:left,y:top} + * @method getXY + * @param { Node } element 需要计算位置的节点对象 + * @return { Object } 返回形如{x:left,y:top}的一个key-value映射对象, 其中键x代表水平偏移距离, + * y代表垂直偏移距离。 + * + * @example + * ```javascript + * var location = UE.dom.domUtils.getXY( document.getElementById("test") ); + * //output: test的坐标为: 12, 24 + * console.log( 'test的坐标为: ', location.x, ',', location.y ); + * ``` */ getXY:function (element) { var x = 0, y = 0; @@ -356,18 +704,33 @@ var domUtils = dom.domUtils = { } return { 'x':x, 'y':y}; }, + /** * 为元素element绑定原生DOM事件,type为事件类型,handler为处理函数 - * @name on - * @grammar UE.dom.domUtils.on(element,type,handler) //type支持数组传入 + * @method on + * @param { Node } element 需要绑定事件的节点对象 + * @param { String } type 绑定的事件类型 + * @param { Function } handler 事件处理器 * @example + * ```javascript * UE.dom.domUtils.on(document.body,"click",function(e){ * //e为事件对象,this为被点击元素对戏那个 - * }) + * }); + * ``` + */ + + /** + * 为元素element绑定原生DOM事件,type为事件类型,handler为处理函数 + * @method on + * @param { Node } element 需要绑定事件的节点对象 + * @param { Array } type 绑定的事件类型数组 + * @param { Function } handler 事件处理器 * @example + * ```javascript * UE.dom.domUtils.on(document.body,["click","mousedown"],function(evt){ * //evt为事件对象,this为被点击元素对象 - * }) + * }); + * ``` */ on:function (element, type, handler) { var types = utils.isArray(type) ? type : [type], @@ -400,10 +763,33 @@ var domUtils = dom.domUtils = { } element = null; }, + /** - * 解除原生DOM事件绑定 - * @name un - * @grammar UE.dom.donUtils.un(element,type,handler) //参见on + * 解除DOM事件绑定 + * @method un + * @param { Node } element 需要解除事件绑定的节点对象 + * @param { String } type 需要接触绑定的事件类型 + * @param { Function } handler 对应的事件处理器 + * @example + * ```javascript + * UE.dom.domUtils.un(document.body,"click",function(evt){ + * //evt为事件对象,this为被点击元素对象 + * }); + * ``` + */ + + /** + * 解除DOM事件绑定 + * @method un + * @param { Node } element 需要解除事件绑定的节点对象 + * @param { Array } type 需要接触绑定的事件类型数组 + * @param { Function } handler 对应的事件处理器 + * @example + * ```javascript + * UE.dom.domUtils.un(document.body, ["click","mousedown"],function(evt){ + * //evt为事件对象,this为被点击元素对象 + * }); + * ``` */ un:function (element, type, handler) { var types = utils.isArray(type) ? type : [type], @@ -430,11 +816,29 @@ var domUtils = dom.domUtils = { /** * 比较节点nodeA与节点nodeB是否具有相同的标签名、属性名以及属性值 - * @name isSameElement - * @grammar UE.dom.domUtils.isSameElement(nodeA,nodeB) => true|false + * @method isSameElement + * @param { Node } nodeA 需要比较的节点 + * @param { Node } nodeB 需要比较的节点 + * @return { Boolean } 两个节点是否具有相同的标签名、属性名以及属性值 * @example - * ssss and bbbbb => true - * ssss and bbbbb => false + * ```html + * ssss + * bbbbb + * ssss + * bbbbb + * + * + * ``` */ isSameElement:function (nodeA, nodeB) { if (nodeA.tagName != nodeB.tagName) { @@ -486,9 +890,30 @@ var domUtils = dom.domUtils = { }, /** - * 判断节点nodeA与节点nodeB的元素属性是否一致 - * @name isSameStyle - * @grammar UE.dom.domUtils.isSameStyle(nodeA,nodeB) => true|false + * 判断节点nodeA与节点nodeB的元素的style属性是否一致 + * @method isSameStyle + * @param { Node } nodeA 需要比较的节点 + * @param { Node } nodeB 需要比较的节点 + * @return { Boolean } 两个节点是否具有相同的style属性值 + * @example + * ```html + * ssss + * bbbbb + * ssss + * bbbbb + * + * + * ``` */ isSameStyle:function (nodeA, nodeB) { var styleA = nodeA.style.cssText.replace(/( ?; ?)/g, ';').replace(/( ?: ?)/g, ':'), @@ -523,30 +948,81 @@ var domUtils = dom.domUtils = { } return true; }, + /** - * 检查节点node是否为块元素 - * @name isBlockElm - * @grammar UE.dom.domUtils.isBlockElm(node) => true|false + * 检查节点node是否为block元素 + * @method isBlockElm + * @param { Node } node 需要检测的节点对象 + * @return { Boolean } 是否是block元素节点 + * @warning 该方法的判断规则如下: 如果该元素原本是block元素, 则不论该元素当前的css样式是什么都会返回true; + * 否则,检测该元素的css样式, 如果该元素当前是block元素, 则返回true。 其余情况下都返回false。 + * @example + * ```html + * + * + *
+ * + * + * ``` */ isBlockElm:function (node) { return node.nodeType == 1 && (dtd.$block[node.tagName] || styleBlock[domUtils.getComputedStyle(node, 'display')]) && !dtd.$nonChild[node.tagName]; }, + /** * 检测node节点是否为body节点 - * @name isBody - * @grammar UE.dom.domUtils.isBody(node) => true|false + * @method isBody + * @param { Element } node 需要检测的dom元素 + * @return { Boolean } 给定的元素是否是body元素 + * @example + * ```javascript + * //output: true + * console.log( UE.dom.domUtils.isBody( document.body ) ); + * ``` */ isBody:function (node) { return node && node.nodeType == 1 && node.tagName.toLowerCase() == 'body'; }, + /** - * 以node节点为中心,将该节点的指定祖先节点parent拆分成2块 - * @name breakParent - * @grammar UE.dom.domUtils.breakParent(node,parent) => node - * @desc - * ooo是node节点 - *

xxxxoooxxx

==>

xxx

ooo

xxx

- *

xxxxxxxxxoooxxxxxx

=>

xxxxxxxxx

ooo

xxxxxx

+ * 以node节点为分界,将该节点的指定祖先节点parent拆分成两个独立的节点, + * 拆分形成的两个节点之间是node节点 + * @method breakParent + * @param { Node } node 作为分界的节点对象 + * @param { Node } parent 该节点必须是node节点的祖先节点, 且是block节点。 + * @return { Node } 给定的node分界节点 + * @example + * ```javascript + * + * var node = document.createElement("span"), + * wrapNode = document.createElement( "div" ), + * parent = document.createElement("p"); + * + * parent.appendChild( node ); + * wrapNode.appendChild( parent ); + * + * //拆分前 + * //output:

+ * console.log( wrapNode.innerHTML ); + * + * + * UE.dom.domUtils.breakParent( node, parent ); + * //拆分后 + * //output:

+ * console.log( wrapNode.innerHTML ); + * + * ``` */ breakParent:function (node, parent) { var tmpNode, @@ -582,15 +1058,19 @@ var domUtils = dom.domUtils = { domUtils.remove(parent); return node; }, + /** * 检查节点node是否是空inline节点 - * @name isEmptyInlineElement - * @grammar UE.dom.domUtils.isEmptyInlineElement(node) => 1|0 + * @method isEmptyInlineElement + * @param { Node } node 需要检测的节点对象 + * @return { Number } 如果给定的节点是空的inline节点, 则返回1, 否则返回0。 * @example + * ```html * => 1 * => 1 * => 1 * xx => 0 + * ``` */ isEmptyInlineElement:function (node) { if (node.nodeType != 1 || !dtd.$removeEmpty[ node.tagName ]) { @@ -614,9 +1094,27 @@ var domUtils = dom.domUtils = { }, /** - * 删除node节点下的左右空白文本子节点 - * @name trimWhiteTextNode - * @grammar UE.dom.domUtils.trimWhiteTextNode(node) + * 删除node节点下首尾两端的空白文本子节点 + * @method trimWhiteTextNode + * @param { Element } node 需要执行删除操作的元素对象 + * @example + * ```javascript + * var node = document.createElement("div"); + * + * node.appendChild( document.createTextNode( "" ) ); + * + * node.appendChild( document.createElement("div") ); + * + * node.appendChild( document.createTextNode( "" ) ); + * + * //3 + * console.log( node.childNodes.length ); + * + * UE.dom.domUtils.trimWhiteTextNode( node ); + * + * //1 + * console.log( node.childNodes.length ); + * ``` */ trimWhiteTextNode:function (node) { function remove(dir) { @@ -629,11 +1127,9 @@ var domUtils = dom.domUtils = { remove('lastChild'); }, - /** + /* * 合并node节点下相同的子节点 - * @name mergeChild - * @desc - * UE.dom.domUtils.mergeChild(node,tagName) //tagName要合并的子节点的标签 + * @method mergeChild * @example *

xxaaxx

* ==> UE.dom.domUtils.mergeChild(node,'span') @@ -678,8 +1174,10 @@ var domUtils = dom.domUtils = { /** * 原生方法getElementsByTagName的封装 - * @name getElementsByTagName - * @grammar UE.dom.domUtils.getElementsByTagName(node,tagName) => Array //节点集合数组 + * @method getElementsByTagName + * @param { Node } node 目标节点对象 + * @param { String } tagName 需要查找的节点的tagName, 多个tagName以空格分割 + * @return { Array } 符合条件的节点集合 */ getElementsByTagName:function (node, name,filter) { if(filter && utils.isString(filter)){ @@ -698,12 +1196,33 @@ var domUtils = dom.domUtils = { return arr; }, + /** - * 将节点node合并到父节点上 - * @name mergeToParent - * @grammar UE.dom.domUtils.mergeToParent(node) + * 将节点node提取到父节点上 + * @method mergeToParent + * @param { Element } node 需要提取的元素对象 * @example - * xxx ==> xxx + * ```html + *
+ *
+ * + *
+ *
+ * + * + * ``` */ mergeToParent:function (node) { var parent = node.parentNode; @@ -733,14 +1252,60 @@ var domUtils = dom.domUtils = { parent = parent.parentNode; } }, + /** * 合并节点node的左右兄弟节点 - * @name mergeSibling - * @grammar UE.dom.domUtils.mergeSibling(node) - * @grammar UE.dom.domUtils.mergeSibling(node,ignorePre) //ignorePre指定是否忽略左兄弟 - * @grammar UE.dom.domUtils.mergeSibling(node,ignorePre,ignoreNext) //ignoreNext指定是否忽略右兄弟 + * @method mergeSibling + * @param { Element } node 需要合并的目标节点 * @example - * xxxxoooxxxx ==> xxxxoooxxxx + * ```html + * xxxxoooxxxx + * + * + * ``` + */ + + /** + * 合并节点node的左右兄弟节点, 可以根据给定的条件选择是否忽略合并左节点。 + * @method mergeSibling + * @param { Element } node 需要合并的目标节点 + * @param { Boolean } ignorePre 是否忽略合并左节点 + * @example + * ```html + * xxxxoooxxxx + * + * + * ``` + */ + + /** + * 合并节点node的左右兄弟节点,可以根据给定的条件选择是否忽略合并左右节点。 + * @method mergeSibling + * @param { Element } node 需要合并的目标节点 + * @param { Boolean } ignorePre 是否忽略合并左节点 + * @param { Boolean } ignoreNext 是否忽略合并右节点 + * @remind 如果同时忽略左右节点, 则该操作什么也不会做 + * @example + * ```html + * xxxxoooxxxx + * + * + * ``` */ mergeSibling:function (node, ignorePre, ignoreNext) { function merge(rtl, start, node) { @@ -762,8 +1327,13 @@ var domUtils = dom.domUtils = { /** * 设置节点node及其子节点不会被选中 - * @name unSelectable - * @grammar UE.dom.domUtils.unSelectable(node) + * @method unSelectable + * @param { Element } node 需要执行操作的dom元素 + * @remind 执行该操作后的节点, 将不能被鼠标选中 + * @example + * ```javascript + * UE.dom.domUtils.unSelectable( document.body ); + * ``` */ unSelectable:ie || browser.opera ? function (node) { //for ie9 @@ -792,17 +1362,49 @@ var domUtils = dom.domUtils = { node.style.webkitUserSelect = node.style.KhtmlUserSelect = 'none'; }, + + /** + * 删除节点node上的指定属性名称的属性 + * @method removeAttributes + * @param { Node } node 需要删除属性的节点对象 + * @param { String } attrNames 可以是空格隔开的多个属性名称,该操作将会依次删除相应的属性 + * @example + * ```html + *
+ * xxxxx + *
+ * + * + * ``` + */ + /** - * 删除节点node上的属性attrNames,attrNames为属性名称数组 - * @name removeAttributes - * @grammar UE.dom.domUtils.removeAttributes(node,attrNames) + * 删除节点node上的指定属性名称的属性 + * @method removeAttributes + * @param { Node } node 需要删除属性的节点对象 + * @param { Array } attrNames 需要删除的属性名数组 * @example - * //Before remove - * xxxxx - * //Remove - * UE.dom.domUtils.removeAttributes(node,["id","name"]); - * //After remove - * xxxxx + * ```html + *
+ * xxxxx + *
+ * + * + * ``` */ removeAttributes:function (node, attrNames) { attrNames = utils.isArray(attrNames) ? attrNames : utils.trim(attrNames).replace(/[ ]{2,}/g,' ').split(' '); @@ -819,18 +1421,53 @@ var domUtils = dom.domUtils = { node.removeAttribute(ci); } }, + /** * 在doc下创建一个标签名为tag,属性为attrs的元素 - * @name createElement - * @grammar UE.dom.domUtils.createElement(doc,tag,attrs) => Node //返回创建的节点 + * @method createElement + * @param { DomDocument } doc 新创建的元素属于该document节点创建 + * @param { String } tagName 需要创建的元素的标签名 + * @param { Object } attrs 新创建的元素的属性key-value集合 + * @return { Element } 新创建的元素对象 + * @example + * ```javascript + * var ele = UE.dom.domUtils.createElement( document, 'div', { + * id: 'test' + * } ); + * + * //output: DIV + * console.log( ele.tagName ); + * + * //output: test + * console.log( ele.id ); + * + * ``` */ createElement:function (doc, tag, attrs) { return domUtils.setAttributes(doc.createElement(tag), attrs) }, + /** * 为节点node添加属性attrs,attrs为属性键值对 - * @name setAttributes - * @grammar UE.dom.domUtils.setAttributes(node,attrs) => node + * @method setAttributes + * @param { Element } node 需要设置属性的元素对象 + * @param { Object } attrs 需要设置的属性名-值对 + * @return { Element } 设置属性的元素对象 + * @example + * ```html + * + * + * + * */ setAttributes:function (node, attrs) { for (var attr in attrs) { @@ -859,12 +1496,26 @@ var domUtils = dom.domUtils = { }, /** - * 获取元素element的计算样式 - * @name getComputedStyle - * @grammar UE.dom.domUtils.getComputedStyle(element,styleName) => String //返回对应样式名称的样式值 + * 获取元素element经过计算后的样式值 + * @method getComputedStyle + * @param { Element } element 需要获取样式的元素对象 + * @param { String } styleName 需要获取的样式名 + * @return { String } 获取到的样式值 * @example - * getComputedStyle(document.body,"font-size") => "15px" - * getComputedStyle(form,"color") => "#ffccdd" + * ```html + * + * + * + * + * + * ``` */ getComputedStyle:function (element, styleName) { //一下的属性单独处理 @@ -900,16 +1551,45 @@ var domUtils = dom.domUtils = { return utils.transUnitToPx(utils.fixColor(styleName, value)); }, /** - * 在元素element上删除classNames,支持同时删除多个 - * @name removeClasses - * @grammar UE.dom.domUtils.removeClasses(element,classNames) + * 删除元素element指定的className + * @method removeClasses + * @param { Element } ele 需要删除class的元素节点 + * @param { String } classNames 需要删除的className, 多个className之间以空格分开 + * @example + * ```html + * xxx + * + * + * ``` + */ + + /** + * 删除元素element指定的className + * @method removeClasses + * @param { Element } ele 需要删除class的元素节点 + * @param { Array } classNames 需要删除的className数组 * @example - * //执行方法前的dom结构 - * xxx - * //执行方法 - * UE.dom.domUtils.removeClasses(element,["test1","test3"]) - * //执行方法后的dom结构 - * xxx + * ```html + * xxx + * + * + * ``` */ removeClasses:function (elm, classNames) { classNames = utils.isArray(classNames) ? classNames : @@ -924,11 +1604,49 @@ var domUtils = dom.domUtils = { domUtils.removeAttributes(elm,['class']); } }, + + /** + * 给元素element添加className + * @method addClass + * @param { Node } ele 需要增加className的元素 + * @param { String } classNames 需要添加的className, 多个className之间以空格分割 + * @remind 相同的类名不会被重复添加 + * @example + * ```html + * + * + * + * ``` + */ + /** - * 判断元素element是否包含样式类名className,支持以空格分开的多个类名,多个类名顺序不同也可以比较 - * @name hasClass - * @grammar UE.dom.domUtils.hasClass(element,className) =>true|false + * 判断元素element是否包含给定的样式类名className + * @method hasClass + * @param { Node } ele 需要检测的元素 + * @param { Array } classNames 需要检测的className数组 + * @return { Boolean } 元素是否包含所有给定的className + * @example + * ```html + * + * + * + * ``` */ hasClass:function (element, className) { if(utils.isRegExp(className)){ @@ -959,14 +1716,37 @@ var domUtils = dom.domUtils = { /** * 阻止事件默认行为 - * @param {Event} evt 需要组织的事件对象 + * @method preventDefault + * @param { Event } evt 需要阻止默认行为的事件对象 + * @example + * ```javascript + * UE.dom.domUtils.preventDefault( evt ); + * ``` */ preventDefault:function (evt) { evt.preventDefault ? evt.preventDefault() : (evt.returnValue = false); }, + /** - * 删除元素element的样式 - * @grammar UE.dom.domUtils.removeStyle(element,name) 删除的样式名称 + * 删除元素element指定的样式 + * @method removeStyle + * @param { Element } element 需要删除样式的元素 + * @param { String } styleName 需要删除的样式名 + * @example + * ```html + * + * + * + * ``` */ removeStyle:function (element, name) { if(browser.ie ){ @@ -988,19 +1768,60 @@ var domUtils = dom.domUtils = { domUtils.removeAttributes(element, ['style']); } }, + /** - * 获取元素element的某个样式值 - * @name getStyle - * @grammar UE.dom.domUtils.getStyle(element,name) => String + * 获取元素element的style属性的指定值 + * @method getStyle + * @param { Element } element 需要获取属性值的元素 + * @param { String } styleName 需要获取的style的名称 + * @warning 该方法仅获取元素style属性中所标明的值 + * @return { String } 该元素包含指定的style属性值 + * @example + * ```html + *
+ * + * + * ``` */ getStyle:function (element, name) { var value = element.style[ utils.cssStyleToDomStyle(name) ]; return utils.fixColor(name, value); }, + + /** * 为元素element设置样式属性值 - * @name setStyle - * @grammar UE.dom.domUtils.setStyle(element,name,value) + * @method setStyle + * @param { Element } element 需要设置样式的元素 + * @param { String } styleName 样式名 + * @param { String } styleValue 样式值 + * @example + * ```html + *
+ * + * + * ``` */ setStyle:function (element, name, value) { element.style[utils.cssStyleToDomStyle(name)] = value; @@ -1008,10 +1829,31 @@ var domUtils = dom.domUtils = { this.removeAttributes(element,'style') } }, + /** - * 为元素element设置样式属性值 - * @name setStyles - * @grammar UE.dom.domUtils.setStyle(element,styles) //styles为样式键值对 + * 为元素element设置多个样式属性值 + * @method setStyles + * @param { Element } element 需要设置样式的元素 + * @param { Object } styles 样式名值对 + * @example + * ```html + *
+ * + * + * ``` */ setStyles:function (element, styles) { for (var name in styles) { @@ -1020,9 +1862,11 @@ var domUtils = dom.domUtils = { } } }, + /** * 删除_moz_dirty属性 - * @function + * @private + * @method removeDirtyAttr */ removeDirtyAttr:function (node) { for (var i = 0, ci, nodes = node.getElementsByTagName('*'); ci = nodes[i++];) { @@ -1030,12 +1874,50 @@ var domUtils = dom.domUtils = { } node.removeAttribute('_moz_dirty'); }, + /** - * 返回子节点的数量 - * @function - * @param {Node} node 父节点 - * @param {Function} fn 过滤子节点的规则,若为空,则得到所有子节点的数量 - * @return {Number} 符合条件子节点的数量 + * 获取子节点的数量 + * @method getChildCount + * @param { Element } node 需要检测的元素 + * @return { Number } 给定的node元素的子节点数量 + * @example + * ```html + *
+ * + *
+ * + * + * ``` + */ + + /** + * 根据给定的过滤规则, 获取符合条件的子节点的数量 + * @method getChildCount + * @param { Element } node 需要检测的元素 + * @param { Function } fn 过滤器, 要求对符合条件的子节点返回true, 反之则要求返回false + * @return { Number } 符合过滤条件的node元素的子节点数量 + * @example + * ```html + *
+ * + *
+ * + * + * ``` */ getChildCount:function (node, fn) { var count = 0, first = node.firstChild; @@ -1052,30 +1934,31 @@ var domUtils = dom.domUtils = { }, /** - * 判断是否为空节点 - * @function - * @param {Node} node 节点 - * @return {Boolean} 是否为空节点 + * 判断给定节点是否为空节点 + * @method isEmptyNode + * @param { Node } node 需要检测的节点对象 + * @return { Boolean } 节点是否为空 + * @example + * ```javascript + * UE.dom.domUtils.isEmptyNode( document.body ); + * ``` */ isEmptyNode:function (node) { return !node.firstChild || domUtils.getChildCount(node, function (node) { return !domUtils.isBr(node) && !domUtils.isBookmarkNode(node) && !domUtils.isWhitespace(node) }) == 0 }, - /** - * 清空节点所有的className - * @function - * @param {Array} nodes 节点数组 - */ + clearSelectedArr:function (nodes) { var node; while (node = nodes.pop()) { domUtils.removeAttributes(node, ['class']); } }, + /** - * 将显示区域滚动到显示节点的位置 - * @function + * 将显示区域滚动到指定节点的位置 + * @method scrollToView * @param {Node} node 节点 * @param {window} win window对象 * @param {Number} offsetTop 距离上方的偏移量 @@ -1114,17 +1997,30 @@ var domUtils = dom.domUtils = { win.scrollTo(0, offset + (offset < 0 ? -20 : 20)); } }, + /** - * 判断节点是否为br - * @function - * @param {Node} node 节点 + * 判断给定节点是否为br + * @method isBr + * @param { Node } node 需要判断的节点对象 + * @return { Boolean } 给定的节点是否是br节点 */ isBr:function (node) { return node.nodeType == 1 && node.tagName == 'BR'; }, + + /** + * 判断给定的节点是否是一个“填充”节点 + * @private + * @method isFillChar + * @param { Node } node 需要判断的节点 + * @param { Boolean } isInStart 是否从节点内容的开始位置匹配 + * @returns { Boolean } 节点是否是填充节点 + */ isFillChar:function (node,isInStart) { return node.nodeType == 3 && !node.nodeValue.replace(new RegExp((isInStart ? '^' : '' ) + domUtils.fillChar), '').length }, + + isStartInblock:function (range) { var tmpRange = range.cloneRange(), flag = 0, @@ -1178,6 +2074,30 @@ var domUtils = dom.domUtils = { } return flag && !domUtils.isBody(tmpRange.startContainer) ? 1 : 0; }, + + /** + * 判断给定的元素是否是一个空元素 + * @method isEmptyBlock + * @param { Element } node 需要判断的元素 + * @return { Boolean } 是否是空元素 + * @example + * ```html + *
+ * + * + * ``` + */ + + /** + * 根据指定的判断规则判断给定的元素是否是一个空元素 + * @method isEmptyBlock + * @param { Element } node 需要判断的元素 + * @param { RegExp } reg 对内容执行判断的正则表达式对象 + * @return { Boolean } 是否是空元素 + */ isEmptyBlock:function (node,reg) { if(node.nodeType != 1) return 0; @@ -1193,6 +2113,32 @@ var domUtils = dom.domUtils = { return 1; }, + /** + * 移动元素使得该元素的位置移动指定的偏移量的距离 + * @method setViewportOffset + * @param { Element } element 需要设置偏移量的元素 + * @param { Object } offset 偏移量, 形如{ left: 100, top: 50 }的一个键值对, 表示该元素将在 + * 现有的位置上向水平方向偏移offset.left的距离, 在竖直方向上偏移 + * offset.top的距离 + * @example + * ```html + *
+ * + * + * ``` + */ setViewportOffset:function (element, offset) { var left = parseInt(element.style.left) | 0; var top = parseInt(element.style.top) | 0; @@ -1206,11 +2152,99 @@ var domUtils = dom.domUtils = { element.style.top = top + offsetTop + 'px'; } }, + + /** + * 用“填充字符”填充节点 + * @method fillNode + * @private + * @param { DomDocument } doc 填充的节点所在的docment对象 + * @param { Node } node 需要填充的节点对象 + * @example + * ```html + *
+ * + * + * ``` + */ fillNode:function (doc, node) { var tmpNode = browser.ie ? doc.createTextNode(domUtils.fillChar) : doc.createElement('br'); node.innerHTML = ''; node.appendChild(tmpNode); }, + + /** + * 把节点src的所有子节点追加到另一个节点tag上去 + * @method moveChild + * @param { Node } src 源节点, 该节点下的所有子节点将被移除 + * @param { Node } tag 目标节点, 从源节点移除的子节点将被追加到该节点下 + * @example + * ```html + *
+ * + *
+ *
+ *
+ *
+ * + * + * ``` + */ + + /** + * 把节点src的所有子节点移动到另一个节点tag上去, 可以通过dir参数控制附加的行为是“追加”还是“插入顶部” + * @method moveChild + * @param { Node } src 源节点, 该节点下的所有子节点将被移除 + * @param { Node } tag 目标节点, 从源节点移除的子节点将被附加到该节点下 + * @param { Boolean } dir 附加方式, 如果为true, 则附加进去的节点将被放到目标节点的顶部, 反之,则放到末尾 + * @example + * ```html + *
+ * + *
+ *
+ *
+ *
+ * + * + * ``` + */ moveChild:function (src, tag, dir) { while (src.firstChild) { if (dir && tag.firstChild) { @@ -1220,27 +2254,131 @@ var domUtils = dom.domUtils = { } } }, - //判断是否有额外属性 + + /** + * 判断节点的标签上是否不存在任何属性 + * @method hasNoAttributes + * @private + * @param { Node } node 需要检测的节点对象 + * @return { Boolean } 节点是否不包含任何属性 + * @example + * ```html + *
xxxx
+ * + * + * ``` + */ hasNoAttributes:function (node) { return browser.ie ? /^<\w+\s*?>/.test(node.outerHTML) : node.attributes.length == 0; }, - //判断是否是编辑器自定义的参数 + + /** + * 检测节点是否是UEditor所使用的辅助节点 + * @method isCustomeNode + * @private + * @param { Node } node 需要检测的节点 + * @remind 辅助节点是指编辑器要完成工作临时添加的节点, 在输出的时候将会从编辑器内移除, 不会影响最终的结果。 + * @return { Boolean } 给定的节点是否是一个辅助节点 + */ isCustomeNode:function (node) { return node.nodeType == 1 && node.getAttribute('_ue_custom_node_'); }, + + /** + * 检测节点的标签是否是给定的标签 + * @method isTagNode + * @param { Node } node 需要检测的节点对象 + * @param { String } tagName 标签 + * @return { Boolean } 节点的标签是否是给定的标签 + * @example + * ```html + *
+ * + * + * ``` + */ isTagNode:function (node, tagName) { return node.nodeType == 1 && new RegExp('^' + node.tagName + '$','i').test(tagName) }, + + /** + * 给定一个节点数组,在通过指定的过滤器过滤后, 获取其中满足过滤条件的第一个节点 + * @method filterNodeList + * @param { Array } nodeList 需要过滤的节点数组 + * @param { Function } fn 过滤器, 对符合条件的节点, 执行结果返回true, 反之则返回false + * @return { Node | NULL } 如果找到符合过滤条件的节点, 则返回该节点, 否则返回NULL + * @example + * ```javascript + * var divNodes = document.getElementsByTagName("div"); + * divNodes = [].slice.call( divNodes, 0 ); + * + * //output: null + * console.log( UE.dom.domUtils.filterNodeList( divNodes, function ( node ) { + * return node.tagName.toLowerCase() !== 'div'; + * } ) ); + * ``` + */ + /** - * 对于nodelist用filter进行过滤 - * @name filterNodeList - * @since 1.2.4+ - * @grammar UE.dom.domUtils.filterNodeList(nodelist,filter,onlyFirst) => 节点 + * 给定一个节点数组nodeList和一组标签名tagNames, 获取其中能够匹配标签名的节点集合中的第一个节点 + * @method filterNodeList + * @param { Array } nodeList 需要过滤的节点数组 + * @param { String } tagNames 需要匹配的标签名, 多个标签名之间用空格分割 + * @return { Node | NULL } 如果找到标签名匹配的节点, 则返回该节点, 否则返回NULL * @example - * UE.dom.domUtils.filterNodeList(document.getElementsByTagName('*'),'div p') //返回第一个是div或者p的节点 - * UE.dom.domUtils.filterNodeList(document.getElementsByTagName('*'),function(n){return n.getAttribute('src')}) - * //返回第一个带src属性的节点 - * UE.dom.domUtils.filterNodeList(document.getElementsByTagName('*'),'i',true) //返回数组,里边都是i节点 + * ```javascript + * var divNodes = document.getElementsByTagName("div"); + * divNodes = [].slice.call( divNodes, 0 ); + * + * //output: null + * console.log( UE.dom.domUtils.filterNodeList( divNodes, 'a span' ) ); + * ``` + */ + + /** + * 给定一个节点数组,在通过指定的过滤器过滤后, 如果参数forAll为true, 则会返回所有满足过滤 + * 条件的节点集合, 否则, 返回满足条件的节点集合中的第一个节点 + * @method filterNodeList + * @param { Array } nodeList 需要过滤的节点数组 + * @param { Function } fn 过滤器, 对符合条件的节点, 执行结果返回true, 反之则返回false + * @param { Boolean } forAll 是否返回整个节点数组, 如果该参数为false, 则返回节点集合中的第一个节点 + * @return { Array | Node | NULL } 如果找到符合过滤条件的节点, 则根据参数forAll的值决定返回满足 + * 过滤条件的节点数组或第一个节点, 否则返回NULL + * @example + * ```javascript + * var divNodes = document.getElementsByTagName("div"); + * divNodes = [].slice.call( divNodes, 0 ); + * + * //output: 3(假定有3个div) + * console.log( divNodes.length ); + * + * var nodes = UE.dom.domUtils.filterNodeList( divNodes, function ( node ) { + * return node.tagName.toLowerCase() === 'div'; + * }, true ); + * + * //output: 3 + * console.log( nodes.length ); + * + * var node = UE.dom.domUtils.filterNodeList( divNodes, function ( node ) { + * return node.tagName.toLowerCase() === 'div'; + * }, false ); + * + * //output: div + * console.log( node.nodeName ); + * ``` */ filterNodeList : function(nodelist,filter,forAll){ var results = []; @@ -1256,6 +2394,13 @@ var domUtils = dom.domUtils = { return results.length == 0 ? null : results.length == 1 || !forAll ? results[0] : results }, + /** + * 查询给定的range选区是否在给定的node节点内,且在该节点的最末尾 + * @method isInNodeEndBoundary + * @param { UE.dom.Range } rng 需要判断的range对象, 该对象的startContainer不能为NULL + * @param node 需要检测的节点对象 + * @return { Number } 如果给定的选取range对象是在node内部的最末端, 则返回1, 否则返回0 + */ isInNodeEndBoundary : function (rng,node){ var start = rng.startContainer; if(start.nodeType == 3 && rng.startOffset != start.nodeValue.length){ diff --git a/_src/core/dtd.js b/_src/core/dtd.js index 9c8f632dc..aecbf55cb 100644 --- a/_src/core/dtd.js +++ b/_src/core/dtd.js @@ -1,7 +1,7 @@ ///import editor.js ///import core/dom/dom.js ///import core/utils.js -/** +/* * dtd html语义化的体现类 * @constructor * @namespace dtd diff --git a/_src/core/filternode.js b/_src/core/filternode.js index 158199921..6e4876cd2 100644 --- a/_src/core/filternode.js +++ b/_src/core/filternode.js @@ -1,10 +1,25 @@ /** + * UE过滤节点的静态方法 * @file - * @name UE.filterNode - * @short filterNode - * @desc 根据给定的规则过滤节点 - * @import editor.js,core/utils.js - * @anthor zhanyi + */ + +/** + * UEditor公用空间,UEditor所有的功能都挂载在该空间下 + * @module UE + */ + + +/** + * 根据传入节点和过滤规则过滤相应节点 + * @module UE + * @since 1.2.6.1 + * @method filterNode + * @param { Object } root 指定root节点 + * @param { Object } rules 过滤规则json对象 + * @example + * ```javascript + * UE.filterNode(root,editor.options.filterRules); + * ``` */ var filterNode = UE.filterNode = function () { function filterNode(node,rules){ diff --git a/_src/core/filterword.js b/_src/core/filterword.js index 96b91c6f8..a2e649b8b 100644 --- a/_src/core/filterword.js +++ b/_src/core/filterword.js @@ -1,10 +1,25 @@ /** + * UE过滤word的静态方法 * @file - * @name UE.filterWord - * @short filterWord - * @desc 用来过滤word粘贴过来的字符串 - * @import editor.js,core/utils.js - * @anthor zhanyi + */ + +/** + * UEditor公用空间,UEditor所有的功能都挂载在该空间下 + * @module UE + */ + + +/** + * 根据传入html字符串过滤word + * @module UE + * @since 1.2.6.1 + * @method filterWord + * @param { String } html html字符串 + * @return { String } 已过滤后的结果字符串 + * @example + * ```javascript + * UE.filterWord(html); + * ``` */ var filterWord = UE.filterWord = function () { diff --git a/_src/core/htmlparser.js b/_src/core/htmlparser.js index 15ef7640f..606d3713b 100644 --- a/_src/core/htmlparser.js +++ b/_src/core/htmlparser.js @@ -1,5 +1,28 @@ -//html字符串转换成uNode节点 -//by zhanyi +/** + * html字符串转换成uNode节点 + * @file + * @module UE + * @since 1.2.6.1 + */ + +/** + * UEditor公用空间,UEditor所有的功能都挂载在该空间下 + * @unfile + * @module UE + */ + +/** + * html字符串转换成uNode节点的静态方法 + * @method htmlparser + * @param { String } htmlstr 要转换的html代码 + * @param { Boolean } ignoreBlank 若设置为true,转换的时候忽略\n\r\t等空白字符 + * @return { uNode } 给定的html片段转换形成的uNode对象 + * @example + * ```javascript + * var root = UE.htmlparser('

htmlparser

', true); + * ``` + */ + var htmlparser = UE.htmlparser = function (htmlstr,ignoreBlank) { var re_tag = /<(?:(?:\/([^>]+)>)|(?:!--([\S|\s]*?)-->)|(?:([^\s\/>]+)\s*((?:(?:"[^"]*")|(?:'[^']*')|[^"'<>])*)\/?>))/g, re_attr = /([\w\-:.]+)(?:(?:\s*=\s*(?:(?:"([^"]*)")|(?:'([^']*)')|([^\s>]+)))|(?=\s|$))/g; @@ -21,7 +44,6 @@ var htmlparser = UE.htmlparser = function (htmlstr,ignoreBlank) { } - var uNode = UE.uNode, needParentNode = { 'td':'tr', diff --git a/_src/core/node.js b/_src/core/node.js index 97c6c4438..2c569081e 100644 --- a/_src/core/node.js +++ b/_src/core/node.js @@ -1,11 +1,39 @@ -///import editor.js -///import core/utils.js -///import core/dom/dom.js -///import core/dom/dtd.js -///import core/htmlparser.js -//模拟的节点类 -//by zhanyi +/** + * 编辑器模拟的节点类 + * @file + * @module UE + * @class uNode + * @since 1.2.6.1 + */ + +/** + * UEditor公用空间,UEditor所有的功能都挂载在该空间下 + * @unfile + * @module UE + */ + (function () { + + /** + * 编辑器模拟的节点类 + * @unfile + * @module UE + * @class uNode + */ + + /** + * 通过一个键值对,创建一个uNode对象 + * @constructor + * @param { Object } attr 传入要创建的uNode的初始属性 + * @example + * ```javascript + * var node = new uNode({ + * type:'element', + * tagName:'span', + * attrs:{style:'font-size:14px;'} + * } + * ``` + */ var uNode = UE.uNode = function (obj) { this.type = obj.type; this.data = obj.data; @@ -36,16 +64,16 @@ return UE.htmlparser(html).children[0] } else { return new uNode({ - type:'element', - children:[], - tagName:html + type: 'element', + children: [], + tagName: html }) } }; uNode.createText = function (data) { return new UE.uNode({ - type:'text', - 'data':utils.unhtml(data || '') + type: 'text', + 'data': utils.unhtml(data || '') }) }; function nodeToHtml(node, arr, formatter, current) { @@ -73,7 +101,7 @@ } function isText(node, arr) { - arr.push(node.parentNode.tagName == 'pre' ? node.data : node.data.replace(/[ ]{2}/g,'  ')) + arr.push(node.parentNode.tagName == 'pre' ? node.data : node.data.replace(/[ ]{2}/g, '  ')) } function isElement(node, arr, formatter, current) { @@ -87,12 +115,12 @@ attrhtml = attrhtml.join(' '); } arr.push('<' + node.tagName + - (attrhtml ? ' ' + attrhtml : '') + + (attrhtml ? ' ' + attrhtml : '') + (dtd.$empty[node.tagName] ? '\/' : '' ) + '>' ); //插入新行 - if (formatter && !dtd.$inlineWithA[node.tagName] && node.tagName != 'pre') { - if(node.children && node.children.length){ + if (formatter && !dtd.$inlineWithA[node.tagName] && node.tagName != 'pre') { + if (node.children && node.children.length) { current = insertLine(arr, current, true); insertIndent(arr, current) } @@ -100,7 +128,7 @@ } if (node.children && node.children.length) { for (var i = 0, ci; ci = node.children[i++];) { - if (formatter && ci.type == 'element' && !dtd.$inlineWithA[ci.tagName] && i > 1) { + if (formatter && ci.type == 'element' && !dtd.$inlineWithA[ci.tagName] && i > 1) { insertLine(arr, current); insertIndent(arr, current) } @@ -108,9 +136,9 @@ } } if (!dtd.$empty[node.tagName]) { - if (formatter && !dtd.$inlineWithA[node.tagName] && node.tagName != 'pre') { + if (formatter && !dtd.$inlineWithA[node.tagName] && node.tagName != 'pre') { - if(node.children && node.children.length){ + if (node.children && node.children.length) { current = insertLine(arr, current); insertIndent(arr, current) } @@ -148,35 +176,81 @@ } } } - function nodeTraversal(root,fn){ - if(root.children && root.children.length){ - for(var i= 0,ci;ci=root.children[i];){ - nodeTraversal(ci,fn); + + function nodeTraversal(root, fn) { + if (root.children && root.children.length) { + for (var i = 0, ci; ci = root.children[i];) { + nodeTraversal(ci, fn); //ci被替换的情况,这里就不再走 fn了 - if(ci.parentNode ){ - if(ci.children && ci.children.length){ + if (ci.parentNode) { + if (ci.children && ci.children.length) { fn(ci) } - if(ci.parentNode) i++ + if (ci.parentNode) i++ } } - }else{ + } else { fn(root) } } + uNode.prototype = { - toHtml:function (formatter) { + + /** + * 当前节点对象,转换成html文本 + * @method toHtml + * @return { String } 返回转换后的html字符串 + * @example + * ```javascript + * node.toHtml(); + * ``` + */ + + /** + * 当前节点对象,转换成html文本 + * @method toHtml + * @param { Boolean } formatter 是否格式化返回值 + * @return { String } 返回转换后的html字符串 + * @example + * ```javascript + * node.toHtml( true ); + * ``` + */ + toHtml: function (formatter) { var arr = []; nodeToHtml(this, arr, formatter, 0); return arr.join('') }, - innerHTML:function (htmlstr) { + + /** + * 获取节点的html内容 + * @method innerHTML + * @warning 假如节点的type不是'element',或节点的标签名称不在dtd列表里,直接返回当前节点 + * @return { String } 返回节点的html内容 + * @example + * ```javascript + * var htmlstr = node.innerHTML(); + * ``` + */ + + /** + * 设置节点的html内容 + * @method innerHTML + * @warning 假如节点的type不是'element',或节点的标签名称不在dtd列表里,直接返回当前节点 + * @param { String } htmlstr 传入要设置的html内容 + * @return { UE.uNode } 返回节点本身 + * @example + * ```javascript + * node.innerHTML('text'); + * ``` + */ + innerHTML: function (htmlstr) { if (this.type != 'element' || dtd.$empty[this.tagName]) { return this; } if (utils.isString(htmlstr)) { - if(this.children){ + if (this.children) { for (var i = 0, ci; ci = this.children[i++];) { ci.parentNode = null; } @@ -190,18 +264,41 @@ return this; } else { var tmpRoot = new UE.uNode({ - type:'root', - children:this.children + type: 'root', + children: this.children }); return tmpRoot.toHtml(); } }, - innerText:function (textStr) { + + /** + * 获取节点的纯文本内容 + * @method innerText + * @warning 假如节点的type不是'element',或节点的标签名称不在dtd列表里,直接返回当前节点 + * @return { String } 返回节点的存文本内容 + * @example + * ```javascript + * var textStr = node.innerText(); + * ``` + */ + + /** + * 设置节点的纯文本内容 + * @method innerText + * @warning 假如节点的type不是'element',或节点的标签名称不在dtd列表里,直接返回当前节点 + * @param { String } textStr 传入要设置的文本内容 + * @return { UE.uNode } 返回节点本身 + * @example + * ```javascript + * node.innerText('text'); + * ``` + */ + innerText: function (textStr) { if (this.type != 'element' || dtd.$empty[this.tagName]) { return this; } if (textStr) { - if(this.children){ + if (this.children) { for (var i = 0, ci; ci = this.children[i++];) { ci.parentNode = null; } @@ -213,33 +310,83 @@ return this.toHtml().replace(/<[^>]+>/g, ''); } }, - getData:function () { + + /** + * 获取当前对象的data属性 + * @method getData + * @return { Object } 若节点的type值是elemenet,返回空字符串,否则返回节点的data属性 + * @example + * ```javascript + * node.getData(); + * ``` + */ + getData: function () { if (this.type == 'element') return ''; return this.data }, - firstChild:function () { + + /** + * 获取当前节点下的第一个子节点 + * @method firstChild + * @return { UE.uNode } 返回第一个子节点 + * @example + * ```javascript + * node.firstChild(); //返回第一个子节点 + * ``` + */ + firstChild: function () { // if (this.type != 'element' || dtd.$empty[this.tagName]) { // return this; // } return this.children ? this.children[0] : null; }, - lastChild:function () { + + /** + * 获取当前节点下的最后一个子节点 + * @method lastChild + * @return { UE.uNode } 返回最后一个子节点 + * @example + * ```javascript + * node.lastChild(); //返回最后一个子节点 + * ``` + */ + lastChild: function () { // if (this.type != 'element' || dtd.$empty[this.tagName] ) { // return this; // } return this.children ? this.children[this.children.length - 1] : null; }, - previousSibling : function(){ + + /** + * 获取和当前节点有相同父亲节点的前一个节点 + * @method previousSibling + * @return { UE.uNode } 返回前一个节点 + * @example + * ```javascript + * node.children[2].previousSibling(); //返回子节点node.children[1] + * ``` + */ + previousSibling: function () { var parent = this.parentNode; for (var i = 0, ci; ci = parent.children[i]; i++) { if (ci === this) { - return i == 0 ? null : parent.children[i-1]; + return i == 0 ? null : parent.children[i - 1]; } } }, - nextSibling : function(){ + + /** + * 获取和当前节点有相同父亲节点的后一个节点 + * @method nextSibling + * @return { UE.uNode } 返回后一个节点,找不到返回null + * @example + * ```javascript + * node.children[2].nextSibling(); //如果有,返回子节点node.children[3] + * ``` + */ + nextSibling: function () { var parent = this.parentNode; for (var i = 0, ci; ci = parent.children[i++];) { if (ci === this) { @@ -247,9 +394,21 @@ } } }, - replaceChild:function (target, source) { + + /** + * 用新的节点替换当前节点 + * @method replaceChild + * @param { UE.uNode } target 要替换成该节点参数 + * @param { UE.uNode } source 要被替换掉的节点 + * @return { UE.uNode } 返回替换之后的节点对象 + * @example + * ```javascript + * node.replaceChild(newNode, childNode); //用newNode替换childNode,childNode是node的子节点 + * ``` + */ + replaceChild: function (target, source) { if (this.children) { - if(target.parentNode){ + if (target.parentNode) { target.parentNode.removeChild(target); } for (var i = 0, ci; ci = this.children[i]; i++) { @@ -262,12 +421,23 @@ } } }, - appendChild:function (node) { + + /** + * 在节点的子节点列表最后位置插入一个节点 + * @method appendChild + * @param { UE.uNode } node 要插入的节点 + * @return { UE.uNode } 返回刚插入的子节点 + * @example + * ```javascript + * node.appendChild( newNode ); //在node内插入子节点newNode + * ``` + */ + appendChild: function (node) { if (this.type == 'root' || (this.type == 'element' && !dtd.$empty[this.tagName])) { if (!this.children) { this.children = [] } - if(node.parentNode){ + if (node.parentNode) { node.parentNode.removeChild(node); } for (var i = 0, ci; ci = this.children[i]; i++) { @@ -283,9 +453,21 @@ }, - insertBefore:function (target, source) { + + /** + * 在传入节点的前面插入一个节点 + * @method insertBefore + * @param { UE.uNode } target 要插入的节点 + * @param { UE.uNode } source 在该参数节点前面插入 + * @return { UE.uNode } 返回刚插入的子节点 + * @example + * ```javascript + * node.parentNode.insertBefore(newNode, node); //在node节点后面插入newNode + * ``` + */ + insertBefore: function (target, source) { if (this.children) { - if(target.parentNode){ + if (target.parentNode) { target.parentNode.removeChild(target); } for (var i = 0, ci; ci = this.children[i]; i++) { @@ -298,9 +480,21 @@ } }, - insertAfter:function (target, source) { + + /** + * 在传入节点的后面插入一个节点 + * @method insertAfter + * @param { UE.uNode } target 要插入的节点 + * @param { UE.uNode } source 在该参数节点后面插入 + * @return { UE.uNode } 返回刚插入的子节点 + * @example + * ```javascript + * node.parentNode.insertAfter(newNode, node); //在node节点后面插入newNode + * ``` + */ + insertAfter: function (target, source) { if (this.children) { - if(target.parentNode){ + if (target.parentNode) { target.parentNode.removeChild(target); } for (var i = 0, ci; ci = this.children[i]; i++) { @@ -313,15 +507,27 @@ } } }, - removeChild:function (node,keepChildren) { + + /** + * 从当前节点的子节点列表中,移除节点 + * @method removeChild + * @param { UE.uNode } node 要移除的节点引用 + * @param { Boolean } keepChildren 是否保留移除节点的子节点,若传入true,自动把移除节点的子节点插入到移除的位置 + * @return { * } 返回刚移除的子节点 + * @example + * ```javascript + * node.removeChild(childNode,true); //在node的子节点列表中移除child节点,并且吧child的子节点插入到移除的位置 + * ``` + */ + removeChild: function (node, keepChildren) { if (this.children) { for (var i = 0, ci; ci = this.children[i]; i++) { if (ci === node) { this.children.splice(i, 1); ci.parentNode = null; - if(keepChildren && ci.children && ci.children.length){ - for(var j= 0,cj;cj=ci.children[j];j++){ - this.children.splice(i+j,0,cj); + if (keepChildren && ci.children && ci.children.length) { + for (var j = 0, cj; cj = ci.children[j]; j++) { + this.children.splice(i + j, 0, cj); cj.parentNode = this; } @@ -331,15 +537,38 @@ } } }, - getAttr:function (attrName) { + + /** + * 获取当前节点所代表的元素属性,即获取attrs对象下的属性值 + * @method getAttr + * @param { String } attrName 要获取的属性名称 + * @return { * } 返回attrs对象下的属性值 + * @example + * ```javascript + * node.getAttr('title'); + * ``` + */ + getAttr: function (attrName) { return this.attrs && this.attrs[attrName.toLowerCase()] }, - setAttr:function (attrName, attrVal) { + + /** + * 设置当前节点所代表的元素属性,即设置attrs对象下的属性值 + * @method setAttr + * @param { String } attrName 要设置的属性名称 + * @param { * } attrVal 要设置的属性值,类型视设置的属性而定 + * @return { * } 返回attrs对象下的属性值 + * @example + * ```javascript + * node.setAttr('title','标题'); + * ``` + */ + setAttr: function (attrName, attrVal) { if (!attrName) { delete this.attrs; return; } - if(!this.attrs){ + if (!this.attrs) { this.attrs = {}; } if (utils.isObject(attrName)) { @@ -359,16 +588,37 @@ } }, - getIndex:function(){ + + /** + * 获取当前节点在父节点下的位置索引 + * @method getIndex + * @return { Number } 返回索引数值,如果没有父节点,返回-1 + * @example + * ```javascript + * node.getIndex(); + * ``` + */ + getIndex: function () { var parent = this.parentNode; - for(var i= 0,ci;ci=parent.children[i];i++){ - if(ci === this){ + for (var i = 0, ci; ci = parent.children[i]; i++) { + if (ci === this) { return i; } } return -1; }, - getNodeById:function (id) { + + /** + * 在当前节点下,根据id查找节点 + * @method getNodeById + * @param { String } id 要查找的id + * @return { UE.uNode } 返回找到的节点 + * @example + * ```javascript + * node.getNodeById('textId'); + * ``` + */ + getNodeById: function (id) { var node; if (this.children && this.children.length) { for (var i = 0, ci; ci = this.children[i++];) { @@ -378,7 +628,18 @@ } } }, - getNodesByTagName:function (tagNames) { + + /** + * 在当前节点下,根据元素名称查找节点列表 + * @method getNodesByTagName + * @param { String } tagNames 要查找的元素名称 + * @return { Array } 返回找到的节点列表 + * @example + * ```javascript + * node.getNodesByTagName('span'); + * ``` + */ + getNodesByTagName: function (tagNames) { tagNames = utils.trim(tagNames).replace(/[ ]{2,}/g, ' ').split(' '); var arr = [], me = this; utils.each(tagNames, function (tagName) { @@ -390,19 +651,41 @@ }); return arr; }, - getStyle:function (name) { + + /** + * 根据样式名称,获取节点的样式值 + * @method getStyle + * @param { String } name 要获取的样式名称 + * @return { String } 返回样式值 + * @example + * ```javascript + * node.getStyle('font-size'); + * ``` + */ + getStyle: function (name) { var cssStyle = this.getAttr('style'); if (!cssStyle) { return '' } - var reg = new RegExp(name + ':([^;]+)','i'); + var reg = new RegExp(name + ':([^;]+)', 'i'); var match = cssStyle.match(reg); if (match && match[0]) { return match[1] } return ''; }, - setStyle:function (name, val) { + + /** + * 给节点设置样式 + * @method setStyle + * @param { String } name 要设置的的样式名称 + * @param { String } val 要设置的的样值 + * @example + * ```javascript + * node.setStyle('font-size', '12px'); + * ``` + */ + setStyle: function (name, val) { function exec(name, val) { var reg = new RegExp(name + ':([^;]+;?)', 'gi'); cssStyle = cssStyle.replace(reg, ''); @@ -425,9 +708,21 @@ } this.setAttr('style', utils.trim(cssStyle)) }, - traversal:function(fn){ - if(this.children && this.children.length){ - nodeTraversal(this,fn); + + /** + * 传入一个函数,递归遍历当前节点下的所有节点 + * @method traversal + * @param { Function } fn 遍历到节点的时,传入节点作为参数,运行此函数 + * @example + * ```javascript + * traversal(node, function(){ + * console.log(node.type); + * }); + * ``` + */ + traversal: function (fn) { + if (this.children && this.children.length) { + nodeTraversal(this, fn); } return this; } diff --git a/_src/core/utils.js b/_src/core/utils.js index 58d98397b..edcaa18bf 100644 --- a/_src/core/utils.js +++ b/_src/core/utils.js @@ -1,28 +1,55 @@ /** + * 工具函数包 * @file - * @name UE.Utils - * @short Utils - * @desc UEditor封装使用的静态工具函数 - * @import editor.js + * @module UE.utils + * @since 1.2.6.1 */ + +/** + * UEditor封装使用的静态工具函数 + * @module UE.utils + * @unfile + */ + var utils = UE.utils = { + /** - * 遍历数组,对象,nodeList - * @name each - * @grammar UE.utils.each(obj,iterator,[context]) - * @since 1.2.4+ - * @desc - * * obj 要遍历的对象 - * * iterator 遍历的方法,方法的第一个是遍历的值,第二个是索引,第三个是obj - * * context iterator的上下文 + * 用给定的迭代器遍历对象 + * @method each + * @param { Object } obj 需要遍历的对象 + * @param { Function } iterator 迭代器, 该方法接受两个参数, 第一个参数是当前所处理的value, 第二个参数是当前遍历对象的key * @example - * UE.utils.each([1,2],function(v,i){ - * console.log(v)//值 - * console.log(i)//索引 - * }) - * UE.utils.each(document.getElementsByTagName('*'),function(n){ - * console.log(n.tagName) - * }) + * ```javascript + * var demoObj = { + * key1: 1, + * key2: 2 + * }; + * + * //output: key1: 1, key2: 2 + * UE.utils.each( demoObj, funciton ( value, key ) { + * + * console.log( key + ":" + value ); + * + * } ); + * ``` + */ + + /** + * 用给定的迭代器遍历数组或类数组对象 + * @method each + * @param { Array } array 需要遍历的数组或者类数组 + * @param { Function } iterator 迭代器, 该方法接受两个参数, 第一个参数是当前所处理的value, 第二个参数是当前遍历对象的key + * @example + * ```javascript + * var divs = document.getElmentByTagNames( "div" ); + * + * //output: 0: DIV, 1: DIV ... + * UE.utils.each( divs, funciton ( value, key ) { + * + * console.log( key + ":" + value.tagName ); + * + * } ); + * ``` */ each : function(obj, iterator, context) { if (obj == null) return; @@ -41,6 +68,21 @@ var utils = UE.utils = { } }, + /** + * 以给定对象作为原型创建一个新对象 + * @method makeInstance + * @param { Object } protoObject 该对象将作为新创建对象的原型 + * @return { Object } 新的对象, 该对象的原型是给定的protoObject对象 + * @example + * ```javascript + * + * var protoObject = { sayHello: function () { console.log('Hello UEditor!'); } }; + * + * var newObject = UE.utils.makeInstance( protoObject ); + * //output: Hello UEditor! + * newObject.sayHello(); + * ``` + */ makeInstance:function (obj) { var noop = new Function(); noop.prototype = obj; @@ -48,11 +90,49 @@ var utils = UE.utils = { noop.prototype = null; return obj; }, + /** * 将source对象中的属性扩展到target对象上 - * @name extend - * @grammar UE.utils.extend(target,source) => Object //覆盖扩展 - * @grammar UE.utils.extend(target,source,true) ==> Object //保留扩展 + * @method extend + * @remind 该方法将强制把source对象上的属性复制到target对象上 + * @see UE.utils.extend(Object,Object,Boolean) + * @param { Object } target 目标对象, 新的属性将附加到该对象上 + * @param { Object } source 源对象, 该对象的属性会被附加到target对象上 + * @return { Object } 返回target对象 + * @example + * ```javascript + * + * var target = { name: 'target', sex: 1 }, + * source = { name: 'source', age: 17 }; + * + * UE.utils.extend( target, source ); + * + * //output: { name: 'source', sex: 1, age: 17 } + * console.log( target ); + * + * ``` + */ + + /** + * 将source对象中的属性扩展到target对象上, 根据指定的isKeepTarget值决定是否保留目标对象中与 + * 源对象属性名相同的属性值。 + * @method extend + * @param { Object } target 目标对象, 新的属性将附加到该对象上 + * @param { Object } source 源对象, 该对象的属性会被附加到target对象上 + * @param { Boolean } isKeepTarget 是否保留目标对象中与源对象中属性名相同的属性 + * @return { Object } 返回target对象 + * @example + * ```javascript + * + * var target = { name: 'target', sex: 1 }, + * source = { name: 'source', age: 17 }; + * + * UE.utils.extend( target, source, true ); + * + * //output: { name: 'target', sex: 1, age: 17 } + * console.log( target ); + * + * ``` */ extend:function (t, s, b) { if (s) { @@ -64,6 +144,30 @@ var utils = UE.utils = { } return t; }, + + /** + * 将给定的多个对象的属性复制到目标对象target上 + * @method extend2 + * @remind 该方法将强制把源对象上的属性复制到target对象上 + * @remind 该方法支持两个及以上的参数, 从第二个参数开始, 其属性都会被复制到第一个参数上。 如果遇到同名的属性, + * 将会覆盖掉之前的值。 + * @param { Object } target 目标对象, 新的属性将附加到该对象上 + * @param { Object... } source 源对象, 支持多个对象, 该对象的属性会被附加到target对象上 + * @return { Object } 返回target对象 + * @example + * ```javascript + * + * var target = {}, + * source1 = { name: 'source', age: 17 }, + * source2 = { title: 'dev' }; + * + * UE.utils.extend2( target, source1, source2 ); + * + * //output: { name: 'source', age: 17, title: 'dev' } + * console.log( target ); + * + * ``` + */ extend2:function (t) { var a = arguments; for (var i = 1; i < a.length; i++) { @@ -76,25 +180,36 @@ var utils = UE.utils = { } return t; }, + /** - * 模拟继承机制,subClass继承superClass - * @name inherits - * @grammar UE.utils.inherits(subClass,superClass) => subClass + * 模拟继承机制, 使得subClass继承自superClass + * @method inherits + * @param { Object } subClass 子类对象 + * @param { Object } superClass 超类对象 + * @warning 该方法只能让subClass继承超类的原型, subClass对象自身的属性和方法不会被继承 + * @return { Object } 继承superClass后的子类对象 * @example + * ```javascript * function SuperClass(){ * this.name = "小李"; * } + * * SuperClass.prototype = { * hello:function(str){ * console.log(this.name + str); * } * } + * * function SubClass(){ * this.name = "小张"; * } + * * UE.utils.inherits(SubClass,SuperClass); + * * var sub = new SubClass(); - * sub.hello("早上好!"); ==> "小张早上好!" + * //output: '小张早上好! + * sub.hello("早上好!"); + * ``` */ inherits:function (subClass, superClass) { var oldP = subClass.prototype, @@ -105,9 +220,30 @@ var utils = UE.utils = { }, /** - * 用指定的context作为fn上下文,也就是this - * @name bind - * @grammar UE.utils.bind(fn,context) => fn + * 用指定的context对象作为函数fn的上下文 + * @method bind + * @param { Function } fn 需要绑定上下文的函数对象 + * @param { Object } content 函数fn新的上下文对象 + * @return { Function } 一个新的函数, 该函数作为原始函数fn的代理, 将完成fn的上下文调换工作。 + * @example + * ```javascript + * + * var name = 'window', + * newTest = null; + * + * function test () { + * console.log( this.name ); + * } + * + * newTest = UE.utils.bind( test, { name: 'object' } ); + * + * //output: object + * newTest(); + * + * //output: window + * test(); + * + * ``` */ bind:function (fn, context) { return function () { @@ -116,22 +252,53 @@ var utils = UE.utils = { }, /** - * 创建延迟delay执行的函数fn - * @name defer - * @grammar UE.utils.defer(fn,delay) =>fn //延迟delay毫秒执行fn,返回fn - * @grammar UE.utils.defer(fn,delay,exclusion) =>fn //延迟delay毫秒执行fn,若exclusion为真,则互斥执行fn + * 创建延迟指定时间后执行的函数fn + * @method defer + * @param { Function } fn 需要延迟执行的函数对象 + * @param { int } delay 延迟的时间, 单位是毫秒 + * @warning 该方法的时间控制是不精确的,仅仅只能保证函数的执行是在给定的时间之后, + * 而不能保证刚好到达延迟时间时执行。 + * @return { Function } 目标函数fn的代理函数, 只有执行该函数才能起到延时效果 + * @example + * ```javascript + * var start = 0; + * + * function test(){ + * console.log( new Date() - start ); + * } + * + * var testDefer = UE.utils.defer( test, 1000 ); + * // + * start = new Date(); + * //output: (大约在1000毫秒之后输出) 1000 + * testDefer(); + * ``` + */ + + /** + * 创建延迟指定时间后执行的函数fn, 如果在延迟时间内再次执行该方法, 将会根据指定的exclusion的值, + * 决定是否取消前一次函数的执行, 如果exclusion的值为true, 则取消执行,反之,将继续执行前一个方法。 + * @method defer + * @param { Function } fn 需要延迟执行的函数对象 + * @param { int } delay 延迟的时间, 单位是毫秒 + * @param { Boolean } exclusion 如果在延迟时间内再次执行该函数,该值将决定是否取消执行前一次函数的执行, + * 值为true表示取消执行, 反之则将在执行前一次函数之后才执行本次函数调用。 + * @warning 该方法的时间控制是不精确的,仅仅只能保证函数的执行是在给定的时间之后, + * 而不能保证刚好到达延迟时间时执行。 + * @return { Function } 目标函数fn的代理函数, 只有执行该函数才能起到延时效果 * @example + * ```javascript + * * function test(){ - * console.log("延迟输出!"); + * console.log(1); * } - * //非互斥延迟执行 - * var testDefer = UE.utils.defer(test,1000); - * testDefer(); => "延迟输出!"; - * testDefer(); => "延迟输出!"; - * //互斥延迟执行 - * var testDefer1 = UE.utils.defer(test,1000,true); - * testDefer1(); => //本次不执行 - * testDefer1(); => "延迟输出!"; + * + * var testDefer = UE.utils.defer( test, 1000, true ); + * + * //output: (两次调用仅有一次输出) 1 + * testDefer(); + * testDefer(); + * ``` */ defer:function (fn, delay, exclusion) { var timerID; @@ -144,10 +311,38 @@ var utils = UE.utils = { }, /** - * 查找元素item在数组array中的索引, 若找不到返回-1 - * @name indexOf - * @grammar UE.utils.indexOf(array,item) => index|-1 //默认从数组开头部开始搜索 - * @grammar UE.utils.indexOf(array,item,start) => index|-1 //start指定开始查找的位置 + * 获取元素item在数组array中首次出现的位置, 如果未找到item, 则返回-1 + * @method indexOf + * @remind 该方法的匹配过程使用的是恒等“===” + * @param { Array } array 需要查找的数组对象 + * @param { * } item 需要在目标数组中查找的值 + * @return { int } 返回item在目标数组array中首次出现的位置, 如果在数组中未找到item, 则返回-1 + * @example + * ```javascript + * var item = 1, + * arr = [ 3, 4, 6, 8, 1, 1, 2 ]; + * + * //output: 4 + * console.log( UE.utils.indexOf( arr, item ) ); + * ``` + */ + + /** + * 获取元素item数组array中首次出现的位置, 如果未找到item, 则返回-1。通过start的值可以指定搜索的起始位置。 + * @method indexOf + * @remind 该方法的匹配过程使用的是恒等“===” + * @param { Array } array 需要查找的数组对象 + * @param { * } item 需要在目标数组中查找的值 + * @param { int } start 搜索的起始位置 + * @return { int } 返回item在目标数组array中的start位置之后首次出现的位置, 如果在数组中未找到item, 则返回-1 + * @example + * ```javascript + * var item = 1, + * arr = [ 3, 4, 6, 8, 1, 2, 8, 3, 2, 1, 1, 4 ]; + * + * //output: 9 + * console.log( UE.utils.indexOf( arr, item, 5 ) ); + * ``` */ indexOf:function (array, item, start) { var index = -1; @@ -162,9 +357,20 @@ var utils = UE.utils = { }, /** - * 移除数组array中的元素item - * @name removeItem - * @grammar UE.utils.removeItem(array,item) + * 移除数组array中所有的元素item + * @method removeItem + * @param { Array } array 要移除元素的目标数组 + * @param { * } item 将要被移除的元素 + * @remind 该方法的匹配过程使用的是恒等“===” + * @example + * ```javascript + * var arr = [ 4, 5, 7, 1, 3, 4, 6 ]; + * + * UE.utils.removeItem( arr, 4 ); + * //output: [ 5, 7, 1, 3, 6 ] + * console.log( arr ); + * + * ``` */ removeItem:function (array, item) { for (var i = 0, l = array.length; i < l; i++) { @@ -177,17 +383,57 @@ var utils = UE.utils = { /** * 删除字符串str的首尾空格 - * @name trim - * @grammar UE.utils.trim(str) => String + * @method trim + * @param { String } str 需要删除首尾空格的字符串 + * @return { String } 删除了首尾的空格后的字符串 + * @example + * ```javascript + * + * var str = " UEdtior "; + * + * //output: 9 + * console.log( str.length ); + * + * //output: 7 + * console.log( UE.utils.trim( " UEdtior " ).length ); + * + * //output: 9 + * console.log( str.length ); + * + * ``` */ trim:function (str) { return str.replace(/(^[ \t\n\r]+)|([ \t\n\r]+$)/g, ''); }, /** - * 将字符串list(以','分隔)或者数组list转成哈希对象 - * @name listToMap - * @grammar UE.utils.listToMap(list) => Object //Object形如{test:1,br:1,textarea:1} + * 将字符串str以','分隔成数组后,将该数组转换成哈希对象, 其生成的hash对象的key为数组中的元素, value为1 + * @method listToMap + * @warning 该方法在生成的hash对象中,会为每一个key同时生成一个另一个全大写的key。 + * @param { String } str 该字符串将被以','分割为数组, 然后进行转化 + * @return { Object } 转化之后的hash对象 + * @example + * ```javascript + * + * //output: Object {UEdtior: 1, UEDTIOR: 1, Hello: 1, HELLO: 1} + * console.log( UE.utils.listToMap( 'UEdtior,Hello' ) ); + * + * ``` + */ + + /** + * 将字符串数组转换成哈希对象, 其生成的hash对象的key为数组中的元素, value为1 + * @method listToMap + * @warning 该方法在生成的hash对象中,会为每一个key同时生成一个另一个全大写的key。 + * @param { Array } arr 字符串数组 + * @return { Object } 转化之后的hash对象 + * @example + * ```javascript + * + * //output: Object {UEdtior: 1, UEDTIOR: 1, Hello: 1, HELLO: 1} + * console.log( UE.utils.listToMap( [ 'UEdtior', 'Hello' ] ) ); + * + * ``` */ listToMap:function (list) { if (!list)return {}; @@ -199,14 +445,18 @@ var utils = UE.utils = { }, /** - * 将str中的html符号转义,默认将转义''&<">''四个字符,可自定义reg来确定需要转义的字符 - * @name unhtml - * @grammar UE.utils.unhtml(str); => String - * @grammar UE.utils.unhtml(str,reg) => String + * 将str中的html符号转义,将转义“',&,<,",>”五个字符 + * @method unhtml + * @param { String } str 需要转义的字符串 + * @return { String } 转义后的字符串 * @example - * var html = 'You say:"你好!Baidu & UEditor!"'; - * UE.utils.unhtml(html); ==> <body>You say:"你好!Baidu & UEditor!"</body> - * UE.utils.unhtml(html,/[<>]/g) ==> <body>You say:"你好!Baidu & UEditor!"</body> + * ```javascript + * var html = '&'; + * + * //output: <body>&</body> + * console.log( UE.utils.unhtml( html ) ); + * + * ``` */ unhtml:function (str, reg) { return str ? str.replace(reg || /[&<">'](?:(amp|lt|quot|gt|#39|nbsp);)?/g, function (a, b) { @@ -224,10 +474,22 @@ var utils = UE.utils = { }) : ''; }, + /** * 将str中的转义字符还原成html字符 - * @name html - * @grammar UE.utils.html(str) => String //详细参见unhtml + * @see UE.utils.unhtml(String); + * @method html + * @param { String } str 需要逆转义的字符串 + * @return { String } 逆转义后的字符串 + * @example + * ```javascript + * + * var str = '<body>&</body>'; + * + * //output: & + * console.log( UE.utils.html( str ) ); + * + * ``` */ html:function (str) { return str ? str.replace(/&((g|l|quo)t|amp|#39);/g, function (m) { @@ -240,10 +502,21 @@ var utils = UE.utils = { }[m] }) : ''; }, + /** - * 将css样式转换为驼峰的形式。如font-size => fontSize - * @name cssStyleToDomStyle - * @grammar UE.utils.cssStyleToDomStyle(cssName) => String + * 将css样式转换为驼峰的形式 + * @method cssStyleToDomStyle + * @param { String } cssName 需要转换的css样式名 + * @return { String } 转换成驼峰形式后的css样式名 + * @example + * ```javascript + * + * var str = 'border-top'; + * + * //output: borderTop + * console.log( UE.utils.cssStyleToDomStyle( str ) ); + * + * ``` */ cssStyleToDomStyle:function () { var test = document.createElement('div').style, @@ -257,21 +530,46 @@ var utils = UE.utils = { })); }; }(), + + /** + * 动态加载文件到doc中 + * @method loadFile + * @param { DomDocument } document 需要加载资源文件的文档对象 + * @param { Object } options 加载资源文件的属性集合, 取值请参考代码示例 + * @example + * ```javascript + * + * UE.utils.loadFile( document, { + * src:"test.js", + * tag:"script", + * type:"text/javascript", + * defer:"defer" + * } ); + * + * ``` + */ + /** - * 动态加载文件到doc中,并依据obj来设置属性,加载成功后执行回调函数fn - * @name loadFile - * @grammar UE.utils.loadFile(doc,obj) - * @grammar UE.utils.loadFile(doc,obj,fn) + * 动态加载文件到doc中,加载成功后执行的回调函数fn + * @method loadFile + * @param { DomDocument } document 需要加载资源文件的文档对象 + * @param { Object } options 加载资源文件的属性集合, 该集合支持的值是script标签和style标签支持的所有属性。 + * @param { Function } fn 资源文件加载成功之后执行的回调 + * @warning 对于在同一个文档中多次加载同一URL的文件, 该方法会在第一次加载之后缓存该请求, + * 在此之后的所有同一URL的请求, 将会直接触发回调。 * @example - * //指定加载到当前document中一个script文件,加载成功后执行function - * utils.loadFile( document, { + * ```javascript + * + * UE.utils.loadFile( document, { * src:"test.js", * tag:"script", * type:"text/javascript", * defer:"defer" * }, function () { - * console.log('加载成功!') - * }); + * console.log('加载成功'); + * } ); + * + * ``` */ loadFile:function () { var tmpList = []; @@ -339,14 +637,36 @@ var utils = UE.utils = { doc.getElementsByTagName("head")[0].appendChild(element); } }(), + /** * 判断obj对象是否为空 - * @name isEmptyObject - * @grammar UE.utils.isEmptyObject(obj) => true|false + * @method isEmptyObject + * @param { * } obj 需要判断的对象 + * @remind 如果判断的对象是NULL, 将直接返回true, 如果是数组且为空, 返回true, 如果是字符串, 且字符串为空, + * 返回true, 如果是普通对象, 且该对象没有任何实例属性, 返回true + * @return { Boolean } 对象是否为空 * @example - * UE.utils.isEmptyObject({}) ==>true - * UE.utils.isEmptyObject([]) ==>true - * UE.utils.isEmptyObject("") ==>true + * ```javascript + * + * //output: true + * console.log( UE.utils.isEmptyObject( {} ) ); + * + * //output: true + * console.log( UE.utils.isEmptyObject( [] ) ); + * + * //output: true + * console.log( UE.utils.isEmptyObject( "" ) ); + * + * //output: false + * console.log( UE.utils.isEmptyObject( { key: 1 } ) ); + * + * //output: false + * console.log( UE.utils.isEmptyObject( [1] ) ); + * + * //output: false + * console.log( UE.utils.isEmptyObject( "1" ) ); + * + * ``` */ isEmptyObject:function (obj) { if (obj == null) return true; @@ -355,10 +675,11 @@ var utils = UE.utils = { return true; }, - /** - * 统一将颜色值使用16进制形式表示 - * @name fixColor - * @grammar UE.utils.fixColor(name,value) => value + /* + * 把rgb格式的颜色值转换成16进制格式 + * @method fixColor + * @param { String } rgb格式的颜色值 + * @param { String } * @example * rgb(255,255,255) => "#ffffff" */ @@ -376,7 +697,8 @@ var utils = UE.utils = { } return value; }, - /** + + /* * 只针对border,padding,margin做了处理,因为性能问题 * @public * @function @@ -426,11 +748,20 @@ var utils = UE.utils = { return b ? b + ";;" : ';' }); }, + /** - * 深度克隆对象,从source到target - * @name clone - * @grammar UE.utils.clone(source) => anthorObj 新的对象是完整的source的副本 - * @grammar UE.utils.clone(source,target) => target包含了source的所有内容,重名会覆盖 + * 克隆对象 + * @method clone + * @param { Object } source 源对象 + * @return { Object } source的一个副本 + */ + + /** + * 深度克隆对象,将source的属性克隆到target对象, 会覆盖target重名的属性。 + * @method clone + * @param { Object } source 源对象 + * @param { Object } target 目标对象 + * @return { Object } 附加了source对象所有属性的target对象 */ clone:function (source, target) { var tmp; @@ -448,11 +779,22 @@ var utils = UE.utils = { } return target; }, + /** - * 转换cm/pt到px - * @name transUnitToPx - * @grammar UE.utils.transUnitToPx('20pt') => '27px' - * @grammar UE.utils.transUnitToPx('0pt') => '0' + * 把cm/pt为单位的值转换为px为单位的值 + * @method transUnitToPx + * @param { String } 待转换的带单位的字符串 + * @return { String } 转换为px为计量单位的值的字符串 + * @example + * ```javascript + * + * //output: 500px + * console.log( UE.utils.transUnitToPx( '20cm' ) ); + * + * //output: 27px + * console.log( UE.utils.transUnitToPx( '20pt' ) ); + * + * ``` */ transUnitToPx:function (val) { if (!/(pt|cm)/.test(val)) { @@ -472,10 +814,22 @@ var utils = UE.utils = { } return val + (val ? 'px' : ''); }, + /** - * DomReady方法,回调函数将在dom树ready完成后执行 - * @name domReady - * @grammar UE.utils.domReady(fn) => fn //返回一个延迟执行的方法 + * 在dom树ready之后执行给定的回调函数 + * @method domReady + * @remind 如果在执行该方法的时候, dom树已经ready, 那么回调函数将立刻执行 + * @param { Function } fn dom树ready之后的回调函数 + * @example + * ```javascript + * + * UE.utils.domReady( function () { + * + * console.log('123'); + * + * } ); + * + * ``` */ domReady:function () { @@ -523,9 +877,11 @@ var utils = UE.utils = { } }(), - /** + + /* * 动态添加css样式 - * @name cssRule + * @method cssRule + * @param { String } 节点名称 * @grammar UE.utils.cssRule('添加的样式的节点名称',['样式','放到哪个document上']) * @grammar UE.utils.cssRule('body','body{background:#ccc}') => null //给body添加背景颜色 * @grammar UE.utils.cssRule('body') =>样式的字符串 //取得key值为body的样式的内容,如果没有找到key值先关的样式将返回空,例如刚才那个背景颜色,将返回 body{background:#ccc} @@ -589,24 +945,45 @@ var utils = UE.utils = { }; /** - * 判断str是否为字符串 - * @name isString - * @grammar UE.utils.isString(str) => true|false + * 判断给定的对象是否是字符串 + * @method isString + * @param { * } object 需要判断的对象 + * @return { Boolean } 给定的对象是否是字符串 */ + /** - * 判断array是否为数组 - * @name isArray - * @grammar UE.utils.isArray(obj) => true|false + * 判断给定的对象是否是数组 + * @method isArray + * @param { * } object 需要判断的对象 + * @return { Boolean } 给定的对象是否是数组 */ + +/** + * 判断给定的对象是否是一个Function + * @method isFunction + * @param { * } object 需要判断的对象 + * @return { Boolean } 给定的对象是否是Function + */ + /** - * 判断obj对象是否为方法 - * @name isFunction - * @grammar UE.utils.isFunction(obj) => true|false + * 判断给定的对象是否是Number + * @method isNumber + * @param { * } object 需要判断的对象 + * @return { Boolean } 给定的对象是否是Number */ + +/** + * 判断给定的对象是否是一个正则表达式 + * @method isRegExp + * @param { * } object 需要判断的对象 + * @return { Boolean } 给定的对象是否是正则表达式 + */ + /** - * 判断obj对象是否为数字 - * @name isNumber - * @grammar UE.utils.isNumber(obj) => true|false + * 判断给定的对象是否是一个普通对象 + * @method isObject + * @param { * } object 需要判断的对象 + * @return { Boolean } 给定的对象是否是普通对象 */ utils.each(['String', 'Function', 'Array', 'Number', 'RegExp', 'Object'], function (v) { UE.utils['is' + v] = function (obj) { diff --git a/_src/customEvent.js b/_src/customEvent.js deleted file mode 100755 index f20a9e107..000000000 --- a/_src/customEvent.js +++ /dev/null @@ -1,151 +0,0 @@ -/** - * @file - * @name 编辑器事件接口 - * @short Custom events - * @des 本文件非编辑器核心文件,仅适用于生成对应的事件接口文档 - * UEditor编辑器中的所有事件监听和触发都统一采用 - * ''editor''是编辑器实例 - * editor.addListener("eventName",handler) 和 editor.fireEvent("eventName")方式调用,支持浏览器原生事件,如keydown,keyup,mousedown,mouseup等 - */ -/** - * 编辑器加载完成事件(核心),在编辑器准备好所有运行条件时触发,大部分场景可以使用editor.ready(fn)取代。 - * @name ready - * @grammar editor.addListener("ready",fn) - * @example - * editor.addListener("ready",function(){ - * //this为editor实例 - * this.setContent("欢迎使用UEditor!"); - * }) - * //同如下接口方式调用 - * editor.ready(function(){ - * this.setContent("欢迎使用UEditor!"); - * }) - */ -/** - * 选区变化事件(核心),当选区出现变化时触发。 - * 在UEditor中,任何涉及到光标改变的操作都会触发选区变化事件,该事件主要用来实现工具栏状态反射。 - * @name selectionChange - * @grammar editor.addListener("selectionChange",fn) - * @grammar editor.fireEvent("selectionChange") - * @example - * editor.addListener("selectionChange",function(){ - * //this为editor实例 - * }) - */ - -/** - * 内容变化事件(核心),当编辑区域中的文本内容出现变化时触发 - * @name contentChange - * @grammar editor.addListener("contentChange",fn) - * @grammar editor.fireEvent("contentChange") - */ - -/** - * 粘贴事件(核心),当使用ctr+v快捷键粘贴(包括Chrome、FF浏览器的右键粘贴)时会触发本事件 - * @name (before|after)Paste - * @grammar editor.addListener("beforePaste",fn) - * @desc - * * beforePaste 在将粘贴的内容写到编辑器之前触发,这个事件触发时,粘贴的内容还未在编辑器内显示 - * * afterPaste 粘贴的内容已经写到编辑器里边后触发 - * @example - * editor.addListener("beforePaste",function(type,data){ - * //beforePaste事件监听区别于afterPaste事件监听最主要的一个方面是存在一个data参数, - * //该data参数是一个对象,包含属性html。 - * //若用户在此处更改该html的值时,将会影响粘贴到编辑器中的内容,主要用于粘贴时需要特殊处理的一些场景。 - * console.log(this.getContent) //this都是当前编辑器的实例 - * //before事件才用这个参数,用来在写出编辑器之前对粘贴进来的内容进行最后的修改 - * data.html = "我把粘贴内容改成了这句话"; - * }) - */ - -/** - * 设置内容事件(核心),当调用setContent方法时触发 - * @name (before|after)SetContent - * @grammar editor.addListener("beforeSetContent",fn) - * @desc - * * beforeSetContent 在内容写到编辑器之前触发 - * * afterSetContent 内容已经写到编辑器里边后触发 - * @example - * editor.addListener("beforeSetContent",function(type,data){ - * //beforeSetContent事件监听区别于afterSetContent事件监听最主要的一个方面是存在一个data参数, - * //该data参数是一个对象,包含属性html。 - * //若用户在此处更改该html的值时,将会影响设置到编辑器中的内容,主要用于设置内容时需要特殊处理的一些场景。 - * data.html = "我把设置内容改成了这句话"; - * }) - */ - -/** - * getAllHtml事件,当调用getAllHtml方法时触发 - * @name getAllHtml - * @grammar editor.addListener("getAllHtml",fn) - * @desc - * * 主要用来对于生成的整个html代码中的head内容进行定制,比如你想插入你自己的样式,script标签等,用来在展示时使用 - * @example - * editor.addListener("getAllHtml",function(type,data){ - * //data是document中head部分html的封装,可通过data.html来获取对应字符串。 - * //需要修改的话得重新赋值data.html = ''; - * }) - */ - -/** - * 内容提交事件(插件),当内容提交插件加载并调用了autosubmit命令时触发,多用于提交之前的验证 - * @name beforeSubmit - * @grammar editor.addListener("beforeSubmit",fn) //若fn返回false,则阻止本次提交 - * @example - * editor.addListener("beforeSubmit",function(){ - * if(!editor.hasContents()){ - * return false; - * } - * }) - */ - -/** - * 如果抓取远程的图片失败了,就触发 - * @name catchRemoteError - * @grammar editor.addListener("catchRemoteError",fn) - * @example - * editor.addListener("catchRemoteError",function(){ - * console.log("抓取失败了!") - * }) - */ - -/** - * 当抓取远程的图片成功并会返回生成图片的链接时触发 - * @name catchRemoterSuccess - * @grammar editor.addListener("catchRemoterSuccess",fn) - * @example - * editor.addListener("catchRemoterSuccess",function(){ - * console.log("抓取成功") - * }) - */ - -/** - * 编辑模式切换事件(插件),当源码模式和富文本模式发生切换时触发事件 - * @name sourceModeChanged - * @grammar editor.addListener("sourceModeChanged",fn) - * @example - * editor.addListener("sourceModeChanged",function(type,mode){ - * //mode代表了当前的编辑模式,true代表切换到了源码模式,false代表切换到了富文本模式 - * }) - */ - -/** - * 全屏切换事件(插件),当执行全屏切换的时候触发事件 - * @name fullScreenChanged - * @grammar editor.addListener("fullScreenChanged",fn) - * @example - * editor.addListener("fullScreenChanged",function(type,mode){ - * //mode代表当前是否全屏,true代表切换到了全屏模式,false代表切换到了普通模式 - * }) - */ - -/** - * 字数超出限制事件(插件),当输入的字符数超出配置项配置时触发 - * @name wordCountOverflow - * @grammar editor.addListener("wordCountOverflow",fn) - * @example - * editor.addListener("wordCountOverflow",function(type,length){ - * console.log(length) - * }) - */ - diff --git a/_src/plugins/anchor.js b/_src/plugins/anchor.js index 1c8589b2a..a3e59d8e8 100644 --- a/_src/plugins/anchor.js +++ b/_src/plugins/anchor.js @@ -1,14 +1,9 @@ -///import core -///commands 锚点 -///commandsName Anchor -///commandsTitle 锚点 -///commandsDialog dialogs\anchor /** - * 锚点 - * @function - * @name baidu.editor.execCommands - * @param {String} cmdName cmdName="anchor"插入锚点 + * 锚点插件,为UEditor提供插入锚点支持 + * @file + * @since 1.2.6.1 */ + UE.plugins['anchor'] = function (){ var me = this; @@ -46,6 +41,19 @@ UE.plugins['anchor'] = function (){ } }) }); + + /** + * 插入锚点 + * @command anchor + * @method execCommand + * @param { String } cmd 命令字符串 + * @param { String } name 锚点名称字符串 + * @example + * ```javascript + * //editor 是编辑器实例 + * editor.execCommand('anchor', 'anchor1'); + * ``` + */ me.commands['anchor'] = { execCommand:function (cmd, name) { var range = this.selection.getRange(),img = range.getClosedNode(); diff --git a/_src/plugins/autoheight.js b/_src/plugins/autoheight.js index fa99019a2..e8d3dfb42 100644 --- a/_src/plugins/autoheight.js +++ b/_src/plugins/autoheight.js @@ -2,7 +2,7 @@ ///commands 当输入内容超过编辑器高度时,编辑器自动增高 ///commandsName AutoHeight,autoHeightEnabled ///commandsTitle 自动增高 -/** +/* * @description 自动伸展 * @author zhanyi */ diff --git a/_src/plugins/autolink.js b/_src/plugins/autolink.js index 8a08dbc4f..f40634f46 100644 --- a/_src/plugins/autolink.js +++ b/_src/plugins/autolink.js @@ -2,7 +2,7 @@ ///commands 为非ie浏览器自动添加a标签 ///commandsName AutoLink ///commandsTitle 自动增加链接 -/** +/* * @description 为非ie浏览器自动添加a标签 * @author zhanyi */ diff --git a/_src/plugins/autosubmit.js b/_src/plugins/autosubmit.js index adf4ae8f4..e9802f1da 100644 --- a/_src/plugins/autosubmit.js +++ b/_src/plugins/autosubmit.js @@ -1,7 +1,19 @@ -///import core -///commands 自动提交 -///commandsName autosubmit -///commandsTitle 自动提交 +/** + * 快捷键提交 + * @file + * @since 1.2.6.1 + */ + +/** + * 提交表单 + * @command autosubmit + * @method execCommand + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * editor.execCommand( 'autosubmit' ); + * ``` + */ UE.plugins['autosubmit'] = function(){ var me = this; me.commands['autosubmit'] = { diff --git a/_src/plugins/autotypeset.js b/_src/plugins/autotypeset.js index 7d3569d63..cf7fff60a 100644 --- a/_src/plugins/autotypeset.js +++ b/_src/plugins/autotypeset.js @@ -2,12 +2,29 @@ ///commands 自动排版 ///commandsName autotypeset ///commandsTitle 自动排版 -/** +/* * 自动排版 * @function * @name baidu.editor.execCommands */ +/** + * 自动排版 + * @file + * @since 1.2.6.1 + */ + +/** + * 对当前编辑器的内容执行自动排版, 排版的行为根据config配置文件里的“autotypeset”选项进行控制。 + * @command autotypeset + * @method execCommand + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * editor.execCommand( 'autotypeset' ); + * ``` + */ + UE.plugins['autotypeset'] = function(){ this.setOpt({'autotypeset':{ diff --git a/_src/plugins/basestyle.js b/_src/plugins/basestyle.js index 7eee43ca9..8a7fe7674 100644 --- a/_src/plugins/basestyle.js +++ b/_src/plugins/basestyle.js @@ -1,15 +1,84 @@ -///import core -///commands 加粗,斜体,上标,下标 -///commandsName Bold,Italic,Subscript,Superscript -///commandsTitle 加粗,加斜,下标,上标 /** - * b u i等基础功能实现 - * @function - * @name baidu.editor.execCommands - * @param {String} cmdName bold加粗。italic斜体。subscript上标。superscript下标。 -*/ + * B、I、sub、super命令支持 + * @file + * @since 1.2.6.1 + */ + UE.plugins['basestyle'] = function(){ + /** + * 字体加粗 + * @command bold + * @param { String } cmd 命令字符串 + * @remind 对已加粗的文本内容执行该命令, 将取消加粗 + * @method execCommand + * @example + * ```javascript + * //editor是编辑器实例 + * //对当前选中的文本内容执行加粗操作 + * //第一次执行, 文本内容加粗 + * editor.execCommand( 'bold' ); + * + * //第二次执行, 文本内容取消加粗 + * editor.execCommand( 'bold' ); + * ``` + */ + + + /** + * 字体倾斜 + * @command italic + * @method execCommand + * @param { String } cmd 命令字符串 + * @remind 对已倾斜的文本内容执行该命令, 将取消倾斜 + * @example + * ```javascript + * //editor是编辑器实例 + * //对当前选中的文本内容执行斜体操作 + * //第一次操作, 文本内容将变成斜体 + * editor.execCommand( 'italic' ); + * + * //再次对同一文本内容执行, 则文本内容将恢复正常 + * editor.execCommand( 'italic' ); + * ``` + */ + + /** + * 下标文本,与“superscript”命令互斥 + * @command subscript + * @method execCommand + * @remind 把选中的文本内容切换成下标文本, 如果当前选中的文本已经是下标, 则该操作会把文本内容还原成正常文本 + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * //editor是编辑器实例 + * //对当前选中的文本内容执行下标操作 + * //第一次操作, 文本内容将变成下标文本 + * editor.execCommand( 'subscript' ); + * + * //再次对同一文本内容执行, 则文本内容将恢复正常 + * editor.execCommand( 'subscript' ); + * ``` + */ + + /** + * 上标文本,与“subscript”命令互斥 + * @command superscript + * @method execCommand + * @remind 把选中的文本内容切换成上标文本, 如果当前选中的文本已经是上标, 则该操作会把文本内容还原成正常文本 + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * //editor是编辑器实例 + * //对当前选中的文本内容执行上标操作 + * //第一次操作, 文本内容将变成上标文本 + * editor.execCommand( 'superscript' ); + * + * //再次对同一文本内容执行, 则文本内容将恢复正常 + * editor.execCommand( 'superscript' ); + * ``` + */ + var basestyles = { 'bold':['strong','b'], 'italic':['em','i'], diff --git a/_src/plugins/blockquote.js b/_src/plugins/blockquote.js index e699afe6a..05ead181e 100644 --- a/_src/plugins/blockquote.js +++ b/_src/plugins/blockquote.js @@ -1,13 +1,32 @@ -///import core -///commands 引用 -///commandsName BlockQuote -///commandsTitle 引用 /** - * - * 引用模块实现 - * @function - * @name baidu.editor.execCommand - * @param {String} cmdName blockquote引用 + * 添加引用 + * @file + * @since 1.2.6.1 + */ + +/** + * 添加引用 + * @command blockquote + * @method execCommand + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * editor.execCommand( 'blockquote' ); + * ``` + */ + +/** + * 添加引用 + * @command blockquote + * @method execCommand + * @param { String } cmd 命令字符串 + * @param { Object } attrs 节点属性 + * @example + * ```javascript + * editor.execCommand( 'blockquote',{ + * style: "color: red;" + * } ); + * ``` */ diff --git a/_src/plugins/catchremoteimage.js b/_src/plugins/catchremoteimage.js index 7a8ee64fb..51b6f4120 100644 --- a/_src/plugins/catchremoteimage.js +++ b/_src/plugins/catchremoteimage.js @@ -2,7 +2,7 @@ ///commands 远程图片抓取 ///commandsName catchRemoteImage,catchremoteimageenable ///commandsTitle 远程图片抓取 -/** +/* * 远程图片抓取,当开启本插件时所有不符合本地域名的图片都将被抓取成为本地服务器上的图片 * */ diff --git a/_src/plugins/cleardoc.js b/_src/plugins/cleardoc.js index e72b584d1..8ee005bb7 100644 --- a/_src/plugins/cleardoc.js +++ b/_src/plugins/cleardoc.js @@ -1,13 +1,19 @@ -///import core -///commands 清空文档 -///commandsName ClearDoc -///commandsTitle 清空文档 /** - * + * 清空文档插件 + * @file + * @since 1.2.6.1 + */ + +/** * 清空文档 - * @function - * @name baidu.editor.execCommand - * @param {String} cmdName cleardoc清空文档 + * @command cleardoc + * @method execCommand + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * //editor 是编辑器实例 + * editor.execCommand('cleardoc'); + * ``` */ UE.commands['cleardoc'] = { diff --git a/_src/plugins/contextmenu.js b/_src/plugins/contextmenu.js index 2f705acb3..23cfd2319 100644 --- a/_src/plugins/contextmenu.js +++ b/_src/plugins/contextmenu.js @@ -2,7 +2,7 @@ ///commands 右键菜单 ///commandsName ContextMenu ///commandsTitle 右键菜单 -/** +/* * 右键菜单 * @function * @name baidu.editor.plugins.contextmenu diff --git a/_src/plugins/convertcase.js b/_src/plugins/convertcase.js index 8f635d9eb..721c5f879 100644 --- a/_src/plugins/convertcase.js +++ b/_src/plugins/convertcase.js @@ -1,12 +1,29 @@ -///import core -///commands 大小写转换 -///commandsName touppercase,tolowercase -///commandsTitle 大写,小写 /** * 大小写转换 - * @function - * @name baidu.editor.execCommands - * @param {String} cmdName cmdName="convertcase" + * @file + * @since 1.2.6.1 + */ + +/** + * 把选区内文本变大写,与“tolowercase”命令互斥 + * @command touppercase + * @method execCommand + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * editor.execCommand( 'touppercase' ); + * ``` + */ + +/** + * 把选区内文本变小写,与“touppercase”命令互斥 + * @command tolowercase + * @method execCommand + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * editor.execCommand( 'tolowercase' ); + * ``` */ UE.commands['touppercase'] = UE.commands['tolowercase'] = { diff --git a/_src/plugins/customstyle.js b/_src/plugins/customstyle.js index 1505c5947..2da535a38 100644 --- a/_src/plugins/customstyle.js +++ b/_src/plugins/customstyle.js @@ -1,7 +1,20 @@ -///import core -///commands 自定义样式 -///commandsName CustomStyle -///commandsTitle 自定义样式 +/** + * 自定义样式 + * @file + * @since 1.2.6.1 + */ + +/** + * 根据config配置文件里“customstyle”选项的值对匹配的标签执行样式替换。 + * @command customstyle + * @method execCommand + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * editor.execCommand( 'customstyle' ); + * ``` + */ + UE.plugins['customstyle'] = function() { var me = this; me.setOpt({ 'customstyle':[ diff --git a/_src/plugins/directionality.js b/_src/plugins/directionality.js index 101788f0e..33129bfb6 100644 --- a/_src/plugins/directionality.js +++ b/_src/plugins/directionality.js @@ -1,14 +1,9 @@ -///import core -///commands 输入的方向 -///commandsName DirectionalityLtr,DirectionalityRtl -///commandsTitle 从左向右输入,从右向左输入 /** - * 输入的方向 - * @function - * @name baidu.editor.execCommand - * @param {String} cmdName directionality执行函数的参数 - * @param {String} forward ltr从左向右输入,rtl从右向左输入 + * 设置文字输入的方向的插件 + * @file + * @since 1.2.6.1 */ + (function() { var block = domUtils.isBlockElm , getObj = function(editor){ @@ -77,6 +72,30 @@ } return range.moveToBookmark( bookmark2 ).moveToBookmark( bookmark ); }; + + /** + * 文字输入方向 + * @command directionality + * @method execCommand + * @param { String } cmdName 命令字符串 + * @param { String } forward 传入'ltr'表示从左向右输入,传入'rtl'表示从右向左输入 + * @example + * ```javascript + * editor.execCommand( 'directionality', 'ltr'); + * ``` + */ + + /** + * 查询当前选区的文字输入方向 + * @command directionality + * @method queryCommandValue + * @param { String } cmdName 命令字符串 + * @return { String } 返回'ltr'表示从左向右输入,返回'rtl'表示从右向左输入 + * @example + * ```javascript + * editor.queryCommandValue( 'directionality'); + * ``` + */ UE.commands['directionality'] = { execCommand : function( cmdName,forward ) { var range = this.selection.getRange(); diff --git a/_src/plugins/elementpath.js b/_src/plugins/elementpath.js index 253c77bad..e1cac3578 100644 --- a/_src/plugins/elementpath.js +++ b/_src/plugins/elementpath.js @@ -1,13 +1,8 @@ -///import core -///commands 选区路径 -///commandsName ElementPath,elementPathEnabled -///commandsTitle 选区路径 /** - * 选区路径 - * @function - * @name baidu.editor.execCommand - * @param {String} cmdName elementpath选区路径 + * 选取路径命令 + * @file */ + UE.plugins['elementpath'] = function(){ var currentLevel, tagNames, diff --git a/_src/plugins/enterkey.js b/_src/plugins/enterkey.js index d82842095..dd70172f2 100644 --- a/_src/plugins/enterkey.js +++ b/_src/plugins/enterkey.js @@ -3,7 +3,7 @@ ///commands 设置回车标签p或br ///commandsName EnterKey ///commandsTitle 设置回车标签p或br -/** +/* * @description 处理回车 * @author zhanyi */ diff --git a/_src/plugins/font.js b/_src/plugins/font.js index 7f21cc397..ceab99efe 100644 --- a/_src/plugins/font.js +++ b/_src/plugins/font.js @@ -1,14 +1,134 @@ -///import core -///import plugins\removeformat.js -///commands 字体颜色,背景色,字号,字体,下划线,删除线 -///commandsName ForeColor,BackColor,FontSize,FontFamily,Underline,StrikeThrough -///commandsTitle 字体颜色,背景色,字号,字体,下划线,删除线 /** - * @description 字体 - * @name baidu.editor.execCommand - * @param {String} cmdName 执行的功能名称 - * @param {String} value 传入的值 + * 字体颜色,背景色,字号,字体,下划线,删除线 + * @file + * @since 1.2.6.1 */ + +/** + * 字体颜色 + * @command forecolor + * @method execCommand + * @param { String } cmd 命令字符串 + * @param { String } value 色值(必须十六进制) + * @example + * ```javascript + * editor.execCommand( 'forecolor', '#000' ); + * ``` + */ +/** + * 返回选区字体颜色 + * @command forecolor + * @method queryCommandValue + * @param { String } cmd 命令字符串 + * @return { String } 返回字体颜色 + * @example + * ```javascript + * editor.queryCommandValue( 'forecolor' ); + * ``` + */ + +/** + * 字体背景颜色 + * @command backcolor + * @method execCommand + * @param { String } cmd 命令字符串 + * @param { String } value 色值(必须十六进制) + * @example + * ```javascript + * editor.execCommand( 'backcolor', '#000' ); + * ``` + */ +/** + * 返回选区字体颜色 + * @command backcolor + * @method queryCommandValue + * @param { String } cmd 命令字符串 + * @return { String } 返回字体背景颜色 + * @example + * ```javascript + * editor.queryCommandValue( 'backcolor' ); + * ``` + */ + +/** + * 字体大小 + * @command fontsize + * @method execCommand + * @param { String } cmd 命令字符串 + * @param { String } value 字体大小 + * @example + * ```javascript + * editor.execCommand( 'fontsize', '14px' ); + * ``` + */ +/** + * 返回选区字体大小 + * @command fontsize + * @method queryCommandValue + * @param { String } cmd 命令字符串 + * @return { String } 返回字体大小 + * @example + * ```javascript + * editor.queryCommandValue( 'fontsize' ); + * ``` + */ + +/** + * 字体样式 + * @command fontfamily + * @method execCommand + * @param { String } cmd 命令字符串 + * @param { String } value 字体样式 + * @example + * ```javascript + * editor.execCommand( 'fontfamily', '微软雅黑' ); + * ``` + */ +/** + * 返回选区字体样式 + * @command fontfamily + * @method queryCommandValue + * @param { String } cmd 命令字符串 + * @return { String } 返回字体样式 + * @example + * ```javascript + * editor.queryCommandValue( 'fontfamily' ); + * ``` + */ + +/** + * 字体下划线,与删除线互斥 + * @command underline + * @method execCommand + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * editor.execCommand( 'underline' ); + * ``` + */ + +/** + * 字体删除线,与下划线互斥 + * @command strikethrough + * @method execCommand + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * editor.execCommand( 'strikethrough' ); + * ``` + */ + +/** + * 字体边框 + * @command fontborder + * @method execCommand + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * editor.execCommand( 'fontborder' ); + * ``` + */ + UE.plugins['font'] = function () { var me = this, fonts = { diff --git a/_src/plugins/formatmatch.js b/_src/plugins/formatmatch.js index 3dfdb9d31..a75e2cec0 100644 --- a/_src/plugins/formatmatch.js +++ b/_src/plugins/formatmatch.js @@ -5,10 +5,24 @@ ///commandsTitle 格式刷 /** * 格式刷,只格式inline的 - * @function - * @name baidu.editor.execCommand - * @param {String} cmdName formatmatch执行格式刷 + * @file + * @since 1.2.6.1 */ + +/** + * 格式刷 + * @command formatmatch + * @method execCommand + * @remind 该操作不能复制段落格式 + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * //editor是编辑器实例 + * //获取格式刷 + * editor.execCommand( 'formatmatch' ); + * ``` + */ + UE.plugins['formatmatch'] = function(){ var me = this, diff --git a/_src/plugins/horizontal.js b/_src/plugins/horizontal.js index 267d09aed..13ae55903 100644 --- a/_src/plugins/horizontal.js +++ b/_src/plugins/horizontal.js @@ -1,14 +1,20 @@ -///import core -///import plugins\inserthtml.js -///commands 分割线 -///commandsName Horizontal -///commandsTitle 分隔线 /** - * 分割线 - * @function - * @name baidu.editor.execCommand - * @param {String} cmdName horizontal插入分割线 + * 插入分割线插件 + * @file + * @since 1.2.6.1 */ + +/** + * 插入分割线 + * @command horizontal + * @method execCommand + * @param { String } cmdName 命令字符串 + * @example + * ```javascript + * editor.execCommand( 'horizontal' ); + * ``` + */ + UE.plugins['horizontal'] = function(){ var me = this; me.commands['horizontal'] = { diff --git a/_src/plugins/image.js b/_src/plugins/image.js index ec721372d..2fb916d21 100644 --- a/_src/plugins/image.js +++ b/_src/plugins/image.js @@ -1,13 +1,33 @@ -///import core -///import plugins\inserthtml.js -///commands 插入图片,操作图片的对齐方式 -///commandsName InsertImage,ImageNone,ImageLeft,ImageRight,ImageCenter -///commandsTitle 图片,默认,居左,居右,居中 -///commandsDialog dialogs\image /** - * Created by . - * User: zhanyi - * for image + * 图片插入、排版插件 + * @file + * @since 1.2.6.1 + */ + +/** + * 图片对齐方式 + * @command imagefloat + * @method execCommand + * @remind 值center为独占一行居中 + * @param { String } cmd 命令字符串 + * @param { String } align 对齐方式,可传left、right、none、center + * @remaind center表示图片独占一行 + * @example + * ```javascript + * editor.execCommand( 'imagefloat', 'center' ); + * ``` + */ + +/** + * 如果选区所在位置是图片区域 + * @command imagefloat + * @method queryCommandValue + * @param { String } cmd 命令字符串 + * @return { String } 返回图片对齐方式 + * @example + * ```javascript + * editor.queryCommandValue( 'imagefloat' ); + * ``` */ UE.commands['imagefloat'] = { @@ -127,7 +147,35 @@ UE.commands['imagefloat'] = { return -1; } }; - +/** + * 插入图片 + * @command insertimage + * @method execCommand + * @param { String } cmd 命令字符串 + * @param { Object } opt 属性键值对,这些属性都将被复制到当前插入图片 + * @remind 该命令第二个参数可接受一个图片配置项对象的数组,可以插入多张图片, + * 此时数组的每一个元素都是一个Object类型的图片属性集合。 + * @example + * ```javascript + * editor.execCommand( 'insertimage', { + * src:'a/b/c.jpg', + * width:'100', + * height:'100' + * } ); + * ``` + * @example + * ```javascript + * editor.execCommand( 'insertimage', [{ + * src:'a/b/c.jpg', + * width:'100', + * height:'100' + * },{ + * src:'a/b/d.jpg', + * width:'100', + * height:'100' + * }] ); + * ``` + */ UE.commands['insertimage'] = { execCommand:function (cmd, opt) { diff --git a/_src/plugins/indent.js b/_src/plugins/indent.js index 22ad8e8b1..b2e5bba90 100644 --- a/_src/plugins/indent.js +++ b/_src/plugins/indent.js @@ -1,14 +1,20 @@ -///import core -///import plugins\paragraph.js -///commands 首行缩进 -///commandsName Outdent,Indent -///commandsTitle 取消缩进,首行缩进 /** * 首行缩进 - * @function - * @name baidu.editor.execCommand - * @param {String} cmdName outdent取消缩进,indent缩进 + * @file + * @since 1.2.6.1 */ + +/** + * 缩进 + * @command indent + * @method execCommand + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * editor.execCommand( 'indent' ); + * ``` + */ + UE.commands['indent'] = { execCommand : function() { var me = this,value = me.queryCommandState("indent") ? "0em" : (me.options.indentValue || '2em'); diff --git a/_src/plugins/insertcode.js b/_src/plugins/insertcode.js index 3f4e33e37..5159148da 100644 --- a/_src/plugins/insertcode.js +++ b/_src/plugins/insertcode.js @@ -1,8 +1,9 @@ -///import core -///import plugins/inserthtml.js -///commands 插入代码 -///commandsName code -///commandsTitle 插入代码 +/** + * 插入代码插件 + * @file + * @since 1.2.6.1 + */ + UE.plugins['insertcode'] = function() { var me = this; me.ready(function(){ @@ -35,6 +36,30 @@ UE.plugins['insertcode'] = function() { 'vb':'Vb', 'xml':'Xml' }); + + /** + * 插入代码 + * @command insertcode + * @method execCommand + * @param { String } cmd 命令字符串 + * @param { String } lang 插入代码的语言 + * @example + * ```javascript + * editor.execCommand( 'insertcode', 'javascript' ); + * ``` + */ + + /** + * 如果选区所在位置是插入插入代码区域,返回代码的语言 + * @command insertcode + * @method queryCommandValue + * @param { String } cmd 命令字符串 + * @return { String } 返回代码的语言 + * @example + * ```javascript + * editor.queryCommandValue( 'insertcode' ); + * ``` + */ me.commands['insertcode'] = { execCommand : function(cmd,lang){ var me = this, diff --git a/_src/plugins/inserthtml.js b/_src/plugins/inserthtml.js index 2bca32791..34ec26e42 100644 --- a/_src/plugins/inserthtml.js +++ b/_src/plugins/inserthtml.js @@ -1,11 +1,31 @@ -///import core /** - * @description 插入内容 - * @name baidu.editor.execCommand - * @param {String} cmdName inserthtml插入内容的命令 - * @param {String} html 要插入的内容 - * @author zhanyi + * 插入html字符串插件 + * @file + * @since 1.2.6.1 */ + +/** + * 插入html代码 + * @command inserthtml + * @method execCommand + * @param { String } cmd 命令字符串 + * @param { String } html 插入的html字符串 + * @remaind 插入的标签内容是在当前的选区位置上插入,如果当前是闭合状态,那直接插入内容, 如果当前是选中状态,将先清除当前选中内容后,再做插入 + * @warning 注意:该命令会对当前选区的位置,对插入的内容进行过滤转换处理。 过滤的规则遵循html语意化的原则。 + * @example + * ```javascript + * //xxx[BB]xxx 当前选区为非闭合选区,选中BB这两个文本 + * //执行命令,插入CC + * //插入后的效果 xxxCCxxx + * //

xx|xxx

当前选区为闭合状态 + * //插入

CC

+ * //结果

xx

CC

xxx

+ * //

xxxx

|

xxx

当前选区在两个p标签之间 + * //插入 xxxx + * //结果

xxxx

xxxx

xxx

+ * ``` + */ + UE.commands['inserthtml'] = { execCommand: function (command,html,notNeedFilter){ var me = this, diff --git a/_src/plugins/insertparagraph.js b/_src/plugins/insertparagraph.js index 3fb2ce1d4..172467e63 100644 --- a/_src/plugins/insertparagraph.js +++ b/_src/plugins/insertparagraph.js @@ -1,12 +1,20 @@ -///import core -///commands 插入空行 -///commandsName insertparagraph -///commandsTitle 插入空行 /** - * 插入空行 - * @function - * @name baidu.editor.execCommand - * @param {String} cmdName insertparagraph + * 插入段落 + * @file + * @since 1.2.6.1 + */ + + +/** + * 插入段落 + * @command insertparagraph + * @method execCommand + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * //editor是编辑器实例 + * editor.execCommand( 'insertparagraph' ); + * ``` */ UE.commands['insertparagraph'] = { diff --git a/_src/plugins/justify.js b/_src/plugins/justify.js index 3559da85b..d1c28a6d4 100644 --- a/_src/plugins/justify.js +++ b/_src/plugins/justify.js @@ -1,14 +1,32 @@ -///import core -///commands 段落格式,居左,居右,居中,两端对齐 -///commandsName JustifyLeft,JustifyCenter,JustifyRight,JustifyJustify -///commandsTitle 居左对齐,居中对齐,居右对齐,两端对齐 /** - * @description 居左右中 - * @name baidu.editor.execCommand - * @param {String} cmdName justify执行对齐方式的命令 - * @param {String} align 对齐方式:left居左,right居右,center居中,justify两端对齐 - * @author zhanyi + * 段落格式 + * @file + * @since 1.2.6.1 */ + +/** + * 段落对齐方式 + * @command justify + * @method execCommand + * @param { String } cmd 命令字符串 + * @param { String } align 对齐方式:left => 居左,right => 居右,center => 居中,justify => 两端对齐 + * @example + * ```javascript + * editor.execCommand( 'justify', 'center' ); + * ``` + */ +/** + * 如果选区所在位置是段落区域,返回当前段落对齐方式 + * @command justify + * @method queryCommandValue + * @param { String } cmd 命令字符串 + * @return { String } 返回段落对齐方式 + * @example + * ```javascript + * editor.queryCommandValue( 'justify' ); + * ``` + */ + UE.plugins['justify']=function(){ var me=this, block = domUtils.isBlockElm, diff --git a/_src/plugins/lineheight.js b/_src/plugins/lineheight.js index bf68ce757..8359cc4b0 100644 --- a/_src/plugins/lineheight.js +++ b/_src/plugins/lineheight.js @@ -1,18 +1,35 @@ -///import core -///import plugins\paragraph.js -///commands 行间距 -///commandsName LineHeight -///commandsTitle 行间距 /** - * @description 设置行内间距 - * @name baidu.editor.execCommand - * @param {String} cmdName lineheight设置行内间距 - * @param {String} value 值 - * @author zhuwenxuan + * 设置行内间距 + * @file + * @since 1.2.6.1 */ + UE.plugins['lineheight'] = function(){ var me = this; me.setOpt({'lineheight':['1', '1.5','1.75','2', '3', '4', '5']}); + + /** + * 行距 + * @command lineheight + * @method execCommand + * @param { String } cmdName 命令字符串 + * @param { String } value 传入的行高值, 该值是当前字体的倍数, 例如: 1.5, 1.75 + * @example + * ```javascript + * editor.execCommand( 'lineheight', 1.5); + * ``` + */ + /** + * 查询当前选区内容的行高大小 + * @command lineheight + * @method queryCommandValue + * @param { String } cmd 命令字符串 + * @return { String } 返回当前行高大小 + * @example + * ```javascript + * editor.queryCommandValue( 'lineheight' ); + * ``` + */ me.commands['lineheight'] = { execCommand : function( cmdName,value ) { this.execCommand('paragraph','p',{style:'line-height:'+ (value == "1" ? "normal" : value + 'em') }); diff --git a/_src/plugins/link.js b/_src/plugins/link.js index ea1a3ed88..0d19141bd 100644 --- a/_src/plugins/link.js +++ b/_src/plugins/link.js @@ -1,22 +1,45 @@ -///import core -///commands 超链接,取消链接 -///commandsName Link,Unlink -///commandsTitle 超链接,取消链接 -///commandsDialog dialogs\link /** * 超链接 - * @function - * @name baidu.editor.execCommand - * @param {String} cmdName link插入超链接 - * @param {Object} options url地址,title标题,target是否打开新页 - * @author zhanyi + * @file + * @since 1.2.6.1 */ + +/** + * 插入超链接 + * @command link + * @method execCommand + * @param { String } cmd 命令字符串 + * @param { Object } options 设置自定义属性,例如:url、title、target + * @example + * ```javascript + * editor.execCommand( 'link', '{ + * url:'ueditor.baidu.com', + * title:'ueditor', + * target:'_blank' + * }' ); + * ``` + */ +/** + * 返回当前选中的第一个超链接节点 + * @command link + * @method queryCommandValue + * @param { String } cmd 命令字符串 + * @return { Element } 超链接节点 + * @example + * ```javascript + * editor.queryCommandValue( 'link' ); + * ``` + */ + /** - * 取消链接 - * @function - * @name baidu.editor.execCommand - * @param {String} cmdName unlink取消链接 - * @author zhanyi + * 取消超链接 + * @command unlink + * @method execCommand + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * editor.execCommand( 'unlink'); + * ``` */ UE.plugins['link'] = function(){ diff --git a/_src/plugins/list.js b/_src/plugins/list.js index 867b9421e..03af6ad57 100644 --- a/_src/plugins/list.js +++ b/_src/plugins/list.js @@ -1,22 +1,7 @@ -///import core -///commands 有序列表,无序列表 -///commandsName InsertOrderedList,InsertUnorderedList -///commandsTitle 有序列表,无序列表 /** - * 有序列表 - * @function - * @name baidu.editor.execCommand - * @param {String} cmdName insertorderlist插入有序列表 - * @param {String} style 值为:decimal,lower-alpha,lower-roman,upper-alpha,upper-roman - * @author zhanyi - */ -/** - * 无序链接 - * @function - * @name baidu.editor.execCommand - * @param {String} cmdName insertunorderlist插入无序列表 - * * @param {String} style 值为:circle,disc,square - * @author zhanyi + * 有序列表,无序列表插件 + * @file + * @since 1.2.6.1 */ UE.plugins['list'] = function () { @@ -863,6 +848,76 @@ UE.plugins['list'] = function () { start = start.parentNode; } } + + + /** + * 有序列表,与“insertunorderedlist”命令互斥 + * @command insertorderedlist + * @method execCommand + * @param { String } command 命令字符串 + * @param { String } style 插入的有序列表类型,值为:decimal,lower-alpha,lower-roman,upper-alpha,upper-roman,cn,cn1,cn2,num,num1,num2 + * @example + * ```javascript + * editor.execCommand( 'insertunorderedlist','decimal'); + * ``` + */ + /** + * 查询当前选区内容是否有序列表 + * @command insertorderedlist + * @method queryCommandState + * @param { String } cmd 命令字符串 + * @return { int } 如果当前选区是有序列表返回1,否则返回0 + * @example + * ```javascript + * editor.queryCommandState( 'insertorderedlist' ); + * ``` + */ + /** + * 查询当前选区内容是否有序列表 + * @command insertorderedlist + * @method queryCommandValue + * @param { String } cmd 命令字符串 + * @return { String } 返回当前有序列表的类型,值为null或decimal,lower-alpha,lower-roman,upper-alpha,upper-roman,cn,cn1,cn2,num,num1,num2 + * @example + * ```javascript + * editor.queryCommandValue( 'insertorderedlist' ); + * ``` + */ + + /** + * 无序列表,与“insertorderedlist”命令互斥 + * @command insertunorderedlist + * @method execCommand + * @param { String } command 命令字符串 + * @param { String } style 插入的无序列表类型,值为:circle,disc,square,dash,dot + * @example + * ```javascript + * editor.execCommand( 'insertunorderedlist','circle'); + * ``` + */ + /** + * 查询当前是否有word文档粘贴进来的图片 + * @command insertunorderedlist + * @method insertunorderedlist + * @param { String } command 命令字符串 + * @return { int } 如果当前选区是无序列表返回1,否则返回0 + * @example + * ```javascript + * editor.queryCommandState( 'insertunorderedlist' ); + * ``` + */ + /** + * 查询当前选区内容是否有序列表 + * @command insertunorderedlist + * @method queryCommandValue + * @param { String } command 命令字符串 + * @return { String } 返回当前无序列表的类型,值为null或circle,disc,square,dash,dot + * @example + * ```javascript + * editor.queryCommandValue( 'insertunorderedlist' ); + * ``` + */ + me.commands['insertorderedlist'] = me.commands['insertunorderedlist'] = { execCommand:function (command, style) { diff --git a/_src/plugins/music.js b/_src/plugins/music.js index a219cfe0a..a94953768 100644 --- a/_src/plugins/music.js +++ b/_src/plugins/music.js @@ -1,19 +1,36 @@ -///import core -///import plugins/inserthtml.js -///commands 音乐 -///commandsName Music -///commandsTitle 插入音乐 -///commandsDialog dialogs\music +/** + * 插入音乐命令 + * @file + */ + +/** + * 插入音乐 + * @command music + * @method execCommand + * @param { Object } musicOptions 插入音乐的参数项, 支持的key有: url=>音乐地址; + * width=>音乐容器宽度;height=>音乐容器高度;align=>音乐文件的对齐方式, 可选值有: left, center, right, none + * @example + * ```javascript + * //editor是编辑器实例 + * //在编辑器里插入一个“植物大战僵尸”的APP + * editor.execCommand( 'music' , { + * width: 400, + * height: 95, + * align: "center", + * url: "音乐地址" + * } ); + * ``` + */ UE.plugins['music'] = function () { var me = this, div; - /** - * 创建插入音乐字符窜 + /* + * 创建插入音乐字符串 * @param url 音乐地址 * @param width 音乐宽度 * @param height 音乐高度 - * @param align 阴雨对齐 + * @param align 对齐 * @param toEmbed 是否以flash代替显示 * @param addParagraph 是否需要添加P标签 */ diff --git a/_src/plugins/pagebreak.js b/_src/plugins/pagebreak.js index 21a8f1012..a4c368b8c 100644 --- a/_src/plugins/pagebreak.js +++ b/_src/plugins/pagebreak.js @@ -1,11 +1,9 @@ -///import core -///commands 添加分页功能 -///commandsName PageBreak -///commandsTitle 分页 /** - * @description 添加分页功能 - * @author zhanyi + * 分页功能插件 + * @file + * @since 1.2.6.1 */ + UE.plugins['pagebreak'] = function () { var me = this, notBreakTags = ['td']; @@ -50,6 +48,20 @@ UE.plugins['pagebreak'] = function () { }) }); + + /** + * 插入分页符 + * @command pagebreak + * @method execCommand + * @param { String } cmd 命令字符串 + * @remind 在表格中插入分页符会把表格切分成两部分 + * @remind 获取编辑器内的数据时, 编辑器会把分页符转换成“_ueditor_page_break_tag_”字符串, + * 以便于提交数据到服务器端后处理分页。 + * @example + * ```javascript + * editor.execCommand( 'pagebreak'); //插入一个hr标签,带有样式类名pagebreak + * ``` + */ me.commands['pagebreak'] = { execCommand:function () { var range = me.selection.getRange(),hr = me.document.createElement('hr'); diff --git a/_src/plugins/paragraph.js b/_src/plugins/paragraph.js index 9b1f596db..910de384a 100644 --- a/_src/plugins/paragraph.js +++ b/_src/plugins/paragraph.js @@ -1,16 +1,36 @@ -///import core -///commands 格式 -///commandsName Paragraph -///commandsTitle 段落格式 /** * 段落样式 - * @function - * @name baidu.editor.execCommand - * @param {String} cmdName paragraph插入段落执行命令 - * @param {String} style 标签值为:'p', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6' - * @param {String} attrs 标签的属性 - * @author zhanyi + * @file + * @since 1.2.6.1 */ + +/** + * 段落格式 + * @command paragraph + * @method execCommand + * @param { String } cmd 命令字符串 + * @param {String} style 标签值为:'p', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6' + * @param {Object} attrs 标签的属性 + * @example + * ```javascript + * editor.execCommand( 'Paragraph','h1','{ + * class:'test' + * }' ); + * ``` + */ + +/** + * 返回选区内节点标签名 + * @command paragraph + * @method queryCommandValue + * @param { String } cmd 命令字符串 + * @return { String } 节点标签名 + * @example + * ```javascript + * editor.queryCommandValue( 'Paragraph' ); + * ``` + */ + UE.plugins['paragraph'] = function() { var me = this, block = domUtils.isBlockElm, diff --git a/_src/plugins/preview.js b/_src/plugins/preview.js index 64df53bd6..60c573099 100644 --- a/_src/plugins/preview.js +++ b/_src/plugins/preview.js @@ -1,12 +1,18 @@ -///import core -///commands 预览 -///commandsName Preview -///commandsTitle 预览 /** * 预览 - * @function - * @name baidu.editor.execCommand - * @param {String} cmdName preview预览编辑器内容 + * @file + * @since 1.2.6.1 + */ + +/** + * 预览 + * @command preview + * @method execCommand + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * editor.execCommand( 'preview' ); + * ``` */ UE.commands['preview'] = { execCommand : function(){ diff --git a/_src/plugins/print.js b/_src/plugins/print.js index 3c5807357..05a1195af 100644 --- a/_src/plugins/print.js +++ b/_src/plugins/print.js @@ -1,12 +1,18 @@ -///import core -///commands 打印 -///commandsName Print -///commandsTitle 打印 /** - * @description 打印 - * @name baidu.editor.execCommand - * @param {String} cmdName print打印编辑器内容 - * @author zhanyi + * 打印 + * @file + * @since 1.2.6.1 + */ + +/** + * 打印 + * @command print + * @method execCommand + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * editor.execCommand( 'print' ); + * ``` */ UE.commands['print'] = { execCommand : function(){ diff --git a/_src/plugins/puretxtpaste.js b/_src/plugins/puretxtpaste.js index 4c6e54798..1044c46f7 100644 --- a/_src/plugins/puretxtpaste.js +++ b/_src/plugins/puretxtpaste.js @@ -1,7 +1,7 @@ /** - * @description 纯文本粘贴 - * @name puretxtpaste - * @author zhanyi + * 纯文本粘贴插件 + * @file + * @since 1.2.6.1 */ UE.plugins['pasteplain'] = function(){ @@ -64,6 +64,28 @@ UE.plugins['pasteplain'] = function(){ //暂时这里支持一下老版本的属性 var pasteplain = me.options.pasteplain; + /** + * 启用或取消纯文本粘贴模式 + * @command pasteplain + * @method execCommand + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * editor.queryCommandState( 'pasteplain' ); + * ``` + */ + + /** + * 查询当前是否处于纯文本粘贴模式 + * @command pasteplain + * @method queryCommandState + * @param { String } cmd 命令字符串 + * @return { int } 如果处于纯文本模式,返回1,否则,返回0 + * @example + * ```javascript + * editor.queryCommandState( 'pasteplain' ); + * ``` + */ me.commands['pasteplain'] = { queryCommandState: function (){ return pasteplain ? 1 : 0; diff --git a/_src/plugins/removeformat.js b/_src/plugins/removeformat.js index f0350fcce..bcf9a95cd 100644 --- a/_src/plugins/removeformat.js +++ b/_src/plugins/removeformat.js @@ -1,17 +1,23 @@ -///import core -///commands 清除格式 -///commandsName RemoveFormat -///commandsTitle 清除格式 /** - * @description 清除格式 - * @name baidu.editor.execCommand - * @param {String} cmdName removeformat清除格式命令 - * @param {String} tags 以逗号隔开的标签。如:span,a - * @param {String} style 样式 - * @param {String} attrs 属性 - * @param {String} notIncluedA 是否把a标签切开 - * @author zhanyi + * 清除格式 + * @file + * @since 1.2.6.1 */ + +/** + * 清除文字样式 + * @command removeformat + * @method execCommand + * @param { String } cmd 命令字符串 + * @param {String} tags 以逗号隔开的标签。如:strong + * @param {String} style 样式如:color + * @param {String} attrs 属性如:width + * @example + * ```javascript + * editor.execCommand( 'removeformat', 'strong','color','width' ); + * ``` + */ + UE.plugins['removeformat'] = function(){ var me = this; me.setOpt({ diff --git a/_src/plugins/rowspacing.js b/_src/plugins/rowspacing.js index d86720b4b..01a0eab33 100644 --- a/_src/plugins/rowspacing.js +++ b/_src/plugins/rowspacing.js @@ -1,15 +1,20 @@ -///import core -///import plugins\paragraph.js -///commands 段间距 -///commandsName RowSpacingBottom,RowSpacingTop -///commandsTitle 段间距 /** - * @description 设置段前距,段后距 - * @name baidu.editor.execCommand - * @param {String} cmdName rowspacing设置段间距 - * @param {String} value 值,以px为单位 - * @param {String} dir top或bottom段前后段后 - * @author zhanyi + * 段前段后间距插件 + * @file + * @since 1.2.6.1 + */ + +/** + * 设置段间距 + * @command rowspacing + * @method execCommand + * @param { String } cmd 命令字符串 + * @param { String } value 段间距的值,以px为单位 + * @param { String } dir 间距位置,top或bottom,分别表示段前和段后 + * @example + * ```javascript + * editor.execCommand( 'rowspacing', '10', 'top' ); + * ``` */ UE.plugins['rowspacing'] = function(){ var me = this; diff --git a/_src/plugins/scrawl.js b/_src/plugins/scrawl.js index 31aff1169..95eddf28f 100644 --- a/_src/plugins/scrawl.js +++ b/_src/plugins/scrawl.js @@ -1,8 +1,3 @@ -///import core -///commands 涂鸦 -///commandsName Scrawl -///commandsTitle 涂鸦 -///commandsDialog dialogs\scrawl UE.commands['scrawl'] = { queryCommandState : function(){ return ( browser.ie && browser.version <= 8 ) ? -1 :0; diff --git a/_src/plugins/searchreplace.js b/_src/plugins/searchreplace.js index aa9883cad..83314dbe3 100644 --- a/_src/plugins/searchreplace.js +++ b/_src/plugins/searchreplace.js @@ -3,7 +3,7 @@ ///commandsName SearchReplace ///commandsTitle 查询替换 ///commandsDialog dialogs\searchreplace -/** +/* * @description 查找替换 * @author zhanyi */ diff --git a/_src/plugins/selectall.js b/_src/plugins/selectall.js index 03a76b85f..a491d227d 100644 --- a/_src/plugins/selectall.js +++ b/_src/plugins/selectall.js @@ -1,14 +1,19 @@ -///import core -///commands 全选 -///commandsName SelectAll -///commandsTitle 全选 /** - * 选中所有 - * @function - * @name baidu.editor.execCommand - * @param {String} cmdName selectall选中编辑器里的所有内容 - * @author zhanyi -*/ + * 全选 + * @file + * @since 1.2.6.1 + */ + +/** + * 选中所有内容 + * @command selectall + * @method execCommand + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * editor.execCommand( 'selectall' ); + * ``` + */ UE.plugins['selectall'] = function(){ var me = this; me.commands['selectall'] = { diff --git a/_src/plugins/shortcutmenu.js b/_src/plugins/shortcutmenu.js index 8a9995659..a1ee3933c 100644 --- a/_src/plugins/shortcutmenu.js +++ b/_src/plugins/shortcutmenu.js @@ -2,7 +2,7 @@ ///commands 弹出菜单 // commandsName popupmenu ///commandsTitle 弹出菜单 -/** +/* * 弹出菜单 * @function * @name baidu.editor.plugins.popupmenu diff --git a/_src/plugins/snapscreen.js b/_src/plugins/snapscreen.js index 823e3400d..b9ecaa046 100644 --- a/_src/plugins/snapscreen.js +++ b/_src/plugins/snapscreen.js @@ -1,11 +1,4 @@ -///import core -///import plugins\inserthtml.js -///import plugins\image.js -///commandsName snapscreen -///commandsTitle 截屏 -/** - * 截屏插件 - */ + UE.plugins['snapscreen'] = function(){ var me = this, doc, diff --git a/_src/plugins/source.js b/_src/plugins/source.js index cdf69e4cc..9ac3fed88 100644 --- a/_src/plugins/source.js +++ b/_src/plugins/source.js @@ -1,9 +1,9 @@ -///import core -///import plugins/serialize.js -///import plugins/undo.js -///commands 查看源码 -///commandsName Source -///commandsTitle 查看源码 +/** + * 源码编辑插件 + * @file + * @since 1.2.6.1 + */ + (function (){ var sourceEditors = { textarea: function (editor, holder){ @@ -101,6 +101,29 @@ var oldGetContent = me.getContent, bakAddress; + + /** + * 切换源码模式和编辑模式 + * @command source + * @method execCommand + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * editor.execCommand( 'source'); + * ``` + */ + + /** + * 查询当前编辑区域的状态是源码模式还是可视化模式 + * @command source + * @method queryCommandState + * @param { String } cmd 命令字符串 + * @return { int } 如果当前是源码编辑模式,返回1,否则返回0 + * @example + * ```javascript + * editor.queryCommandState( 'source' ); + * ``` + */ me.commands['source'] = { execCommand: function (){ diff --git a/_src/plugins/table.action.js b/_src/plugins/table.action.js index fa81d8fbd..82b731efc 100644 --- a/_src/plugins/table.action.js +++ b/_src/plugins/table.action.js @@ -1,4 +1,4 @@ -/** +/* * Created with JetBrains PhpStorm. * User: taoqili * Date: 12-10-12 @@ -523,7 +523,7 @@ UE.plugins['table'] = function () { toggleDraggableState(me, false, "", null); } }); - /** + /* * 表格隔行变色 */ me.addListener("interlacetable",function(type,table,classList){ @@ -699,7 +699,7 @@ UE.plugins['table'] = function () { }); - /** + /* * 删除obj的宽高style,改成属性宽高 * @param obj * @param replaceToProperty @@ -907,7 +907,7 @@ UE.plugins['table'] = function () { } } - /** + /* * 获取拖动时允许的X轴坐标 * @param dragTd * @param evt @@ -928,7 +928,7 @@ UE.plugins['table'] = function () { } } - /** + /* * 获取拖动时允许的Y轴坐标 */ function getPermissionY(dragTd, evt) { @@ -941,7 +941,7 @@ UE.plugins['table'] = function () { } } - /** + /* * 移动状态切换 */ function toggleDraggableState(editor, draggable, dir, mousePos, cell) { @@ -961,7 +961,7 @@ UE.plugins['table'] = function () { } } - /** + /* * 获取与UETable相关的resize line * @param uetable UETable对象 */ @@ -1000,7 +1000,7 @@ UE.plugins['table'] = function () { } - /** + /* * 更新resize-line */ function updateResizeLine( cell, uetable ) { @@ -1018,7 +1018,7 @@ UE.plugins['table'] = function () { } - /** + /* * 显示resize-line */ function showResizeLine( cell ) { @@ -1029,7 +1029,7 @@ UE.plugins['table'] = function () { } - /** + /* * 获取鼠标与当前单元格的相对位置 * @param ele * @param mousePos @@ -1511,7 +1511,7 @@ UE.plugins['table'] = function () { } - /** + /* * 获取调整单元格大小的相关单元格 * @isContainMergeCell 返回的结果中是否包含发生合并后的单元格 */ @@ -1583,7 +1583,7 @@ UE.plugins['table'] = function () { } - /** + /* * 通过给定的单元格集合获取最小的单元格width */ function getMinWidthByTableCells( cells ) { @@ -1662,7 +1662,7 @@ UE.plugins['table'] = function () { } - /** + /* * 获取单元格所在表格的最末单元格的偏移量 */ function getTableCellOffset( cell ) { @@ -1757,7 +1757,7 @@ UE.plugins['table'] = function () { } } - /** + /* * 依据state(v|h)在cell位置显示横线 * @param state * @param cell @@ -1784,7 +1784,7 @@ UE.plugins['table'] = function () { } } - /** + /* * 当表格边框颜色为白色时设置为虚线,true为添加虚线 * @param editor * @param flag @@ -1811,7 +1811,7 @@ UE.plugins['table'] = function () { return body.offsetWidth - (needIEHack ? parseInt(domUtils.getComputedStyle(body, 'margin-left'), 10) * 2 : 0) - defaultValue.tableBorder * 2 - (editor.options.offsetWidth || 0); } - /** + /* * 获取当前拖动的单元格 */ function getTargetTd(editor, evt) { diff --git a/_src/plugins/table.cmds.js b/_src/plugins/table.cmds.js index dfc87b6b9..418954970 100644 --- a/_src/plugins/table.cmds.js +++ b/_src/plugins/table.cmds.js @@ -1,4 +1,4 @@ -/** +/* * Created with JetBrains PhpStorm. * User: taoqili * Date: 13-2-20 @@ -693,7 +693,7 @@ }); } }, - /** + /* * 查询当前点击的单元格的对齐状态, 如果当前已经选择了多个单元格, 则会返回所有单元格经过统一协调过后的状态 * @see UE.UETable.getTableCellAlignState */ diff --git a/_src/plugins/table.core.js b/_src/plugins/table.core.js index 12143bc5b..04a04d7ce 100644 --- a/_src/plugins/table.core.js +++ b/_src/plugins/table.core.js @@ -1,11 +1,11 @@ -/** +/* * Created with JetBrains WebStorm. * User: taoqili * Date: 13-1-18 * Time: 上午11:09 * To change this template use File | Settings | File Templates. */ -/** +/* * UE表格操作类 * @param table * @constructor @@ -47,7 +47,7 @@ return parseInt(domUtils.getComputedStyle(cell, "width"), 10); }; - /** + /* * 获取单元格或者单元格组的“对齐”状态。 如果当前的检测对象是一个单元格组, 只有在满足所有单元格的 水平和竖直 对齐属性都相同的 * 条件时才会返回其状态值,否则将返回null; 如果当前只检测了一个单元格, 则直接返回当前单元格的对齐状态; * @param table cell or table cells , 支持单个单元格dom对象 或者 单元格dom对象数组 @@ -85,7 +85,7 @@ }; - /** + /* * 根据当前选区获取相关的table信息 * @return {Object} */ @@ -157,7 +157,7 @@ }; } }; - /** + /* * 根据当前点击的td或者table获取索引对象 * @param tdOrTable */ @@ -206,7 +206,7 @@ } return maxLen; }, - /** + /* * 获取当前表格的最大列数 */ getMaxCols:function () { @@ -234,7 +234,7 @@ getCellColIndex:function (cell) { }, - /** + /* * 获取当前cell旁边的单元格, * @param cell * @param right @@ -274,7 +274,7 @@ return nextCell; }, - /** + /* * 获取视觉上的后置单元格 * @param cell * @param bottom @@ -296,7 +296,7 @@ showError(e); } }, - /** + /* * 获取相同结束位置的单元格,xOrY指代了是获取x轴相同还是y轴相同 */ getSameEndPosCells:function (cell, xOrY) { @@ -330,7 +330,7 @@ cell.innerHTML = content || (browser.ie ? domUtils.fillChar : "
"); }, cloneCell:UETable.cloneCell, - /** + /* * 获取跟当前单元格的右边竖线为左边的所有未合并单元格 */ getSameStartPosXCells:function (cell) { @@ -353,7 +353,7 @@ showError(e); } }, - /** + /* * 更新table对应的索引表 */ update:function (table) { @@ -442,7 +442,7 @@ } }, - /** + /* * 获取单元格的索引信息 */ getCellInfo:function (cell) { @@ -458,13 +458,13 @@ } } }, - /** + /* * 根据行列号获取单元格 */ getCell:function (rowIndex, cellIndex) { return rowIndex < this.rowsNum && this.table.rows[rowIndex].cells[cellIndex] || null; }, - /** + /* * 删除单元格 */ deleteCell:function (cell, rowIndex) { @@ -472,7 +472,7 @@ var row = this.table.rows[rowIndex]; row.deleteCell(cell.cellIndex); }, - /** + /* * 根据始末两个单元格获取被框选的所有单元格范围 */ getCellsRange:function (cellA, cellB) { @@ -559,7 +559,7 @@ //throw e; } }, - /** + /* * 依据cellsRange获取对应的单元格集合 */ getCells:function (range) { @@ -587,7 +587,7 @@ } return returnTds; }, - /** + /* * 清理已经选中的单元格 */ clearSelected:function () { @@ -595,7 +595,7 @@ this.selectedTds = []; this.cellsRange = {}; }, - /** + /* * 根据range设置已经选中的单元格 */ setSelected:function (range) { @@ -616,7 +616,7 @@ return !ths.length ? rows == this.rowsNum : rows == this.rowsNum || (rows == this.rowsNum - 1); }, - /** + /* * 获取视觉上的前置单元格,默认是左边,top传入时 * @param cell * @param top @@ -656,7 +656,7 @@ showError(e); } }, - /** + /* * 移动单元格中的内容 */ moveContent:function (cellTo, cellFrom) { @@ -673,7 +673,7 @@ cellTo.appendChild(child); } }, - /** + /* * 向右合并单元格 */ mergeRight:function (cell) { @@ -691,7 +691,7 @@ this.deleteCell(rightCell, rightCellInfo.rowIndex); this.update(); }, - /** + /* * 向下合并单元格 */ mergeDown:function (cell) { @@ -705,7 +705,7 @@ this.deleteCell(downCell, downCellInfo.rowIndex); this.update(); }, - /** + /* * 合并整个range中的内容 */ mergeRange:function () { @@ -754,7 +754,7 @@ } this.update(); }, - /** + /* * 插入一行单元格 */ insertRow:function (rowIndex, sourceCell) { @@ -790,7 +790,7 @@ this.update(); return row; }, - /** + /* * 删除一行单元格 * @param rowIndex */ diff --git a/_src/plugins/template.js b/_src/plugins/template.js index d90ac5bbb..1d4270b51 100644 --- a/_src/plugins/template.js +++ b/_src/plugins/template.js @@ -1,10 +1,4 @@ -///import core -///import plugins\inserthtml.js -///import plugins\cleardoc.js -///commands 模板 -///commandsName template -///commandsTitle 模板 -///commandsDialog dialogs\template + UE.plugins['template'] = function () { UE.commands['template'] = { execCommand:function (cmd, obj) { diff --git a/_src/plugins/time.js b/_src/plugins/time.js index 6e250ac9b..e237b1d17 100644 --- a/_src/plugins/time.js +++ b/_src/plugins/time.js @@ -1,22 +1,30 @@ -///import core -///import plugins\inserthtml.js -///commands 日期,时间 -///commandsName Date,Time -///commandsTitle 日期,时间 /** - * 插入日期 - * @function - * @name baidu.editor.execCommand - * @param {String} cmdName date插入日期 - * @author zhuwenxuan -*/ + * 插入时间和日期 + * @file + * @since 1.2.6.1 + */ + +/** + * 插入时间,默认格式:12:59:59 + * @command time + * @method execCommand + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * editor.execCommand( 'time'); + * ``` + */ + /** - * 插入时间 - * @function - * @name baidu.editor.execCommand - * @param {String} cmdName time插入时间 - * @author zhuwenxuan -*/ + * 插入日期,默认格式:2013-08-30 + * @command date + * @method execCommand + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * editor.execCommand( 'date'); + * ``` + */ UE.commands['time'] = UE.commands["date"] = { execCommand : function(cmd){ var date = new Date; diff --git a/_src/plugins/undo.js b/_src/plugins/undo.js index d258095d9..0dd4ef30a 100644 --- a/_src/plugins/undo.js +++ b/_src/plugins/undo.js @@ -2,11 +2,39 @@ ///commands 撤销和重做 ///commandsName Undo,Redo ///commandsTitle 撤销,重做 -/** +/* * @description 回退 * @author zhanyi */ +/** + * undo redo + * @file + * @since 1.2.6.1 + */ + +/** + * 撤销上一次执行的命令 + * @command undo + * @method execCommand + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * editor.execCommand( 'undo' ); + * ``` + */ + +/** + * 重做上一次执行的命令 + * @command redo + * @method execCommand + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * editor.execCommand( 'redo' ); + * ``` + */ + UE.plugins['undo'] = function () { var saveSceneTimer; var me = this, diff --git a/_src/plugins/video.js b/_src/plugins/video.js index c01373721..e2899a0ce 100644 --- a/_src/plugins/video.js +++ b/_src/plugins/video.js @@ -1,14 +1,15 @@ -///import core -///import plugins/inserthtml.js -///commands 视频 -///commandsName InsertVideo -///commandsTitle 插入视频 -///commandsDialog dialogs\video +/** + * video插件, 为UEditor提供视频插入支持 + * @file + * @since 1.2.6.1 + */ + UE.plugins['video'] = function (){ + var me =this, div; - /** + /* * 创建插入视频字符窜 * @param url 视频地址 * @param width 视频宽度 @@ -46,6 +47,72 @@ UE.plugins['video'] = function (){ switchImgAndEmbed(root) }); + /** + * 插入视频 + * @command insertvideo + * @method execCommand + * @param { String } cmd 命令字符串 + * @param { Object } videoAttr 键值对对象, 描述一个视频的所有属性 + * @example + * ```javascript + * + * var videoAttr = { + * //视频地址 + * url: 'http://www.youku.com/xxx', + * //视频宽高值, 单位px + * width: 200, + * height: 100 + * }; + * + * //editor 是编辑器实例 + * //向编辑器插入单个视频 + * editor.execCommand( 'insertvideo', videoAttr ); + * ``` + */ + + /** + * 插入视频 + * @command insertvideo + * @method execCommand + * @param { String } cmd 命令字符串 + * @param { Array } videoArr 需要插入的视频的数组, 其中的每一个元素都是一个键值对对象, 描述了一个视频的所有属性 + * @example + * ```javascript + * + * var videoAttr1 = { + * //视频地址 + * url: 'http://www.youku.com/xxx', + * //视频宽高值, 单位px + * width: 200, + * height: 100 + * }, + * videoAttr2 = { + * //视频地址 + * url: 'http://www.youku.com/xxx', + * //视频宽高值, 单位px + * width: 200, + * height: 100 + * } + * + * //editor 是编辑器实例 + * //该方法将会向编辑器内插入两个视频 + * editor.execCommand( 'insertvideo', [ videoAttr1, videoAttr2 ] ); + * ``` + */ + + /** + * 查询当前光标所在处是否是一个视频 + * @command insertvideo + * @method queryCommandState + * @param { String } cmd 需要查询的命令字符串 + * @return { int } 如果当前光标所在处的元素是一个视频对象, 则返回1,否则返回0 + * @example + * ```javascript + * + * //editor 是编辑器实例 + * editor.queryCommandState( 'insertvideo' ); + * ``` + */ me.commands["insertvideo"] = { execCommand: function (cmd, videoObjs){ videoObjs = utils.isArray(videoObjs)?videoObjs:[videoObjs]; diff --git a/_src/plugins/webapp.js b/_src/plugins/webapp.js index 6c1e7f59f..5a0502d1e 100644 --- a/_src/plugins/webapp.js +++ b/_src/plugins/webapp.js @@ -1,9 +1,32 @@ -///import core -///import plugins/inserthtml.js -///commands 百度应用 -///commandsName webapp -///commandsTitle 百度应用 -///commandsDialog dialogs\webapp +/** + * 百度应用 + * @file + * @since 1.2.6.1 + */ + + +/** + * 插入百度应用 + * @command webapp + * @method execCommand + * @remind 需要百度APPKey + * @remind 百度应用主页: http://app.baidu.com/ + * @param { Object } appOptions 应用所需的参数项, 支持的key有: title=>应用标题, width=>应用容器宽度, + * height=>应用容器高度,logo=>应用logo,url=>应用地址 + * @example + * ```javascript + * //editor是编辑器实例 + * //在编辑器里插入一个“植物大战僵尸”的APP + * editor.execCommand( 'webapp' , { + * title: '植物大战僵尸', + * width: 560, + * height: 465, + * logo: '应用展示的图片', + * url: '百度应用的地址' + * } ); + * ``` + */ + UE.plugins['webapp'] = function () { var me = this; function createInsertStr( obj, toIframe, addParagraph ) { diff --git a/_src/plugins/wordcount.js b/_src/plugins/wordcount.js index ea769634e..4cb762403 100644 --- a/_src/plugins/wordcount.js +++ b/_src/plugins/wordcount.js @@ -2,7 +2,7 @@ ///commands 字数统计 ///commandsName WordCount,wordCount ///commandsTitle 字数统计 -/** +/* * Created by JetBrains WebStorm. * User: taoqili * Date: 11-9-7 diff --git a/_src/plugins/wordimage.js b/_src/plugins/wordimage.js index 56d0ddf74..16cc6820f 100644 --- a/_src/plugins/wordimage.js +++ b/_src/plugins/wordimage.js @@ -1,9 +1,8 @@ -///import core -///commands 本地图片引导上传 -///commandsName WordImage -///commandsTitle 本地图片引导上传 -///commandsDialog dialogs\wordimage - +/* + * 本地图片引导上传插件 + * @file + * @since 1.2.6.1 + */ UE.plugins["wordimage"] = function () { var me = this, @@ -27,6 +26,30 @@ UE.plugins["wordimage"] = function () { } }) }); + + /* + * 粘贴word文档的内容时,运行该命令,会把编辑区域里的word图片地址,赋值到editor.word_img的数组里面 + * @command wordimage + * @method execCommand + * @param { String } cmd 命令字符串 + * @example + * ```javascript + * editor.execCommand( 'wordimage'); + * ``` + */ + + /* + * 查询当前是否有word文档粘贴进来的图片 + * @command wordimage + * @method queryCommandState + * @param { String } cmd 命令字符串 + * @return { int } 如果当前编辑区域有word文档的粘贴进来的图片,则返回1,否则返回-1 + * @example + * ```javascript + * editor.queryCommandState( 'wordimage' ); + * ``` + */ + me.commands['wordimage'] = { execCommand:function () { images = domUtils.getElementsByTagName(me.document.body, "img"); diff --git a/docs/api.html b/docs/api.html new file mode 100644 index 000000000..f3d75ed2a --- /dev/null +++ b/docs/api.html @@ -0,0 +1,47546 @@ + + + + API文档 + + + + + + + + + +

UEditor API (适用于1.2.6.1+)

+
+
+

命令列表

+ +
+ + COMMAND通用方法 + + + + + + + + + + + + + + + + + + + + + + + +
方法描述
execCommand( String cmd, * params... ) +

执行命令的通用方法

+

+ 该方法的第一个参数是需要执行的命令。剩下的可选的参数根据每个命令的不同而有一些差异, + 具体请参照相应的命令详情。 +

+
queryCommandState( String cmd ) +

+ 查询给定命令在当前选区内的状态。
+ 通用的返回状态有: +

    +
  • + 1 => 代表当前命令在当前选区内已执行 +
  • +
  • + 0 => 代表当前命令在当前选区内未执行, 但处于可用状态 +
  • +
  • + -1 => 代表当前命令在当前选区内处于不可用状态 +
  • +
+

+
queryCommandValue +

查询给定命令在当前选区内的值, 默认返回undefined,代表当前命令未提供该方法的自定义实现。根据命令的不同其返回值也会不同。

+
+

以上列表中的方法对于没一个命令都是适用的。区别在于,对于不同的命令,其需要的参数可能会不同。

+
+
+
+
+ +
+ + COMMAND列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
#命令描述
1anchor + 插入锚点 +
2autosubmit + ctrl+enter 自动提交表单 +
3bold + 字体加粗, 对已加粗的文本内容执行该命令, 将取消加粗 +
4italic + 字体倾斜, 对已倾斜的文本内容执行该命令, 将取消倾斜 +
5subscript + 下标文本, 把选中的文本内容切换成下标文本, 如果当前选中的文本已经是下标, 则该操作会把文本内容还原成 + 正常文本 +
6superscript + 上标文本, 把选中的文本内容切换成上标文本, 如果当前选中的文本已经是上标, 则该操作会把文本内容还原成 + 正常文本 +
7blockquote + 根据选区位置对标签添加引用 +
8cleardoc + 清空文档命令 +
9touppercase + 把选区内文本变大写 +
10tolowercase + 把选区内文本变小写 +
11directionality + 设置文字的方向,可设置从左向右输入,或者从右向左输入,操作对当前段作用 +
12forecolor + 设置字体颜色 +
13backcolor + 设置字体背景颜色 +
14fontsize + 设置字体大小 +
15fontfamily + 设置字体样式 +
16underline + 根据选区内文本有无下划线设置字体下划线 +
17strikethrough + 根据选区内文本有无删除线设置字体删除线 +
18fontborder + 根据选区内文本有无字体边框设置字体边框 +
19formatmatch + 格式刷,对inline类型的文本内容执行格式刷操作 +
20horizontal + 插入分割线,分割线是hr标签 +
21imagefloat + 对图片居左居中居右排版 +
22insertimage + 向编辑器插入图片 +
23indent + 给选区内文本添加缩进 +
24insertcode + 根据选择的语言,插入代码编辑块 +
25inserthtml + 对编辑器区域插入html字符串 +
26insertparagraph + 在当前光标位置处插入新段落, 如果光标已经在段落之中, 则会在该段落之后插入一个新的段落。 +
27justify + 对段落居左,居右,居中,两端对齐 +
28lineheight + 设置选区的行高 +
29link + 插入超链接 +
30unlink + 根据当前选区取消超链接 +
31insertorderedlist + 运行有序列表命令 +
32insertunorderedlist + 运行无序列表命令 +
33music + 在当前光标处插入音乐 +
34pagebreak + 插入分页符,在当前光标插入分页符 +
35paragraph + 对选区内文本添加相应标签嵌套 +
36Paragraph + 对选区内文本添加相应标签嵌套 +
37preview + 预览 +
38print + 打印 +
39pasteplain + 启用或取消纯文本粘贴模式 +
40removeformat + 对图片居左居中居右排版 +
41rowspacing + 设置段前距,段后距 +
42selectall + 选中编辑器里的所有内容 +
43snapscreen + 截屏 +
44source + 切换源码编辑模式和可视化编辑模式 +
45time + 插入当前时间,插入的格式:12:59:59 +
46date + 插入当前日期,插入格式:2013-08-30 +
47insertvideo + 插入视频 +
48webapp + 在当前光标处插入一个百度应用, 需要百度APPKey +
+
+
+ +
+

anchor

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 插入锚点 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd, String name)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+ name + + String + + 锚点名称字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
 //editor 是编辑器实例
+ editor.execCommand('anchor', 'anchor1');
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

autosubmit

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ ctrl+enter 自动提交表单 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'autosubmit' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

bold

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 字体加粗, 对已加粗的文本内容执行该命令, 将取消加粗 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
+6
+7
 //editor是编辑器实例
+ //对当前选中的文本内容执行加粗操作
+ //第一次执行, 文本内容加粗
+ editor.execCommand( 'bold' );
+
+ //第二次执行, 文本内容取消加粗
+ editor.execCommand( 'bold' );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandState(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 获取当前选中的文本内容的加粗状态 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ int + + 如果当前选中的所有文本内容已经被加粗, 则返回1, 否则返回0 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
 //editor是编辑器实例
+ //获取当前选中的文本内容的加粗状态
+ //output: 1 或者 0
+ console.log( editor.queryCommandState( 'bold' ) );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

italic

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 字体倾斜, 对已倾斜的文本内容执行该命令, 将取消倾斜 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
+6
+7
 //editor是编辑器实例
+ //对当前选中的文本内容执行斜体操作
+ //第一次操作, 文本内容将变成斜体
+ editor.execCommand( 'italic' );
+
+ //再次对同一文本内容执行, 则文本内容将恢复正常
+ editor.execCommand( 'italic' );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandState(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 获取当前选中的文本内容的倾斜状态 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ int + + 如果当前选中的所有文本内容已经是斜体, 则返回1, 否则返回0 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
 //editor是编辑器实例
+ //获取当前选中的文本内容的倾斜状态
+ //output: 1 或者 0
+ console.log( editor.queryCommandState( 'italic' ) );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

subscript

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 下标文本, 把选中的文本内容切换成下标文本, 如果当前选中的文本已经是下标, 则该操作会把文本内容还原成 + 正常文本 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
+6
+7
 //editor是编辑器实例
+ //对当前选中的文本内容执行下标操作
+ //第一次操作, 文本内容将变成下标文本
+ editor.execCommand( 'subscript' );
+
+ //再次对同一文本内容执行, 则文本内容将恢复正常
+ editor.execCommand( 'subscript' );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandState(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 获取当前选中的文本内容的下标状态 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ int + + 如果当前选中的所有文本内容已经是下标文本, 则返回1, 否则返回0 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
 //editor是编辑器实例
+ //获取当前选中的文本内容的下标状态
+ //output: 1 或者 0
+ console.log( editor.queryCommandState( 'subscript' ) );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

superscript

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 上标文本, 把选中的文本内容切换成上标文本, 如果当前选中的文本已经是上标, 则该操作会把文本内容还原成 + 正常文本 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
+6
+7
 //editor是编辑器实例
+ //对当前选中的文本内容执行上标操作
+ //第一次操作, 文本内容将变成上标文本
+ editor.execCommand( 'superscript' );
+
+ //再次对同一文本内容执行, 则文本内容将恢复正常
+ editor.execCommand( 'superscript' );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandState(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 获取当前选中的文本内容的上标状态 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ int + + 如果当前选中的所有文本内容已经是上标文本, 则返回1, 否则返回0 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
 //editor是编辑器实例
+ //获取当前选中的文本内容的上标状态
+ //output: 1 或者 0
+ console.log( editor.queryCommandState( 'superscript' ) );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

blockquote

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 根据选区位置对标签添加引用 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd, Object attrs)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+ attrs + + Object + + 节点属性 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 editor.execCommand( 'blockquote',{
+     color:'#000'
+ } );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandState(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 返回当前选区位置是否在引用标签内 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ int + + 0为是,-1为不是 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandState( 'blockquote' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

cleardoc

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 清空文档命令 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
 //editor 是编辑器实例
+ editor.execCommand('cleardoc');
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

touppercase

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 把选区内文本变大写 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'touppercase' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

tolowercase

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 把选区内文本变小写 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'tolowercase' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

directionality

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 设置文字的方向,可设置从左向右输入,或者从右向左输入,操作对当前段作用 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmdName, String forward)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmdName + + String + + 命令字符串 +
+ forward + + String + + 传入'ltr'表示从左向右输入,传入'rtl'表示从右向左输入 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'directionality', 'ltr');
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandValue(String cmdName)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 查询当前段落的文字输入方向 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmdName + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 返回'ltr'表示从左向右输入,返回'rtl'表示从右向左输入 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandValue( 'directionality');
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

forecolor

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 设置字体颜色 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd, String value)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+ value + + String + + 色值 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'forecolor', '#000' );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandValue(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 返回选区字体颜色 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 返回字体颜色 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandValue( 'forecolor' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

backcolor

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 设置字体背景颜色 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd, String value)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+ value + + String + + 色值 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'backcolor', '#000' );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandValue(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 返回选区字体颜色 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 返回字体背景颜色 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandValue( 'backcolor' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

fontsize

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 设置字体大小 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd, String value)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+ value + + String + + 字体大小 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'fontsize', '14px' );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandValue(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 返回选区字体大小 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 返回字体大小 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandValue( 'fontsize' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

fontfamily

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 设置字体样式 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd, String value)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+ value + + String + + 字体大小 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'fontfamily', '微软雅黑' );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandValue(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 返回选区字体样式 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 返回字体样式 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandValue( 'fontfamily' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

underline

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 根据选区内文本有无下划线设置字体下划线 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'underline' );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandValue(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 返回选区有无下划线 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Bool + + true为有下划线,反之则无 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandValue( 'underline' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

strikethrough

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 根据选区内文本有无删除线设置字体删除线 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'strikethrough' );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandValue(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 返回选区有无删除线 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Bool + + true为有删除线,反之则无 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandValue( 'strikethrough' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

fontborder

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 根据选区内文本有无字体边框设置字体边框 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'fontborder' );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandValue(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 返回选区有无字体边框 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Bool + + true为有字体边框,反之则无 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandValue( 'fontborder' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

formatmatch

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 格式刷,对inline类型的文本内容执行格式刷操作 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 //editor是编辑器实例
+ //获取格式刷
+ editor.execCommand( 'formatmatch' );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandState(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 获取当前的格式状态 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ int + + 如果当前的格式刷处于可用状态, 则返回1, 否则返回0 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
 //editor是编辑器实例
+ //获取当前选中的文本内容的上标状态
+ //output: 1 或者 0
+ console.log( editor.queryCommandState( 'formatmatch' ) );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

horizontal

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 插入分割线,分割线是hr标签 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmdName)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmdName + + String + + 命令字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'horizontal' );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandState()
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 查询当前是否允许插入分割线 +
+ + + + + +
+ +
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Int + + 如果选区在表格里面,返回0,否则返回1 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandState( 'horizontal' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

imagefloat

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 对图片居左居中居右排版 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd, String align)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+ align + + String + + 对齐方式,可传left、right、none、center +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'imagefloat', 'center' );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandValue(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 如果选区所在位置是图片区域 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 返回图片对齐方式 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandValue( 'imagefloat' );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandState(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 返回当前选区位置是否是图片 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ int + + 0为是,-1为不是 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandState( 'imagefloat' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

insertimage

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 向编辑器插入图片 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd, Object opt)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+ opt + + Object + + 属性键值对,这些属性都将被复制到当前插入图片 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
 editor.execCommand( 'insertimage', {
+     src:'a/b/c.jpg',
+     width:'100',
+     height:'100'
+ } );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

indent

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 给选区内文本添加缩进 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'indent' );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandState(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 返回当前选区位置是否有缩进 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ int + + 0为不是,1为是 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandState( 'indent' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

insertcode

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 根据选择的语言,插入代码编辑块 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd, String lang)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+ lang + + String + + 插入代码的语言 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'insertcode', 'javascript' );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandValue(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 如果选区所在位置是插入插入代码区域,返回代码的语言 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 返回代码的语言 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandValue( 'insertcode' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

inserthtml

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 对编辑器区域插入html字符串 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd, String html, Bool notNeedFilter)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+ html + + String + + 插入的html字符串 +
+ notNeedFilter + + Bool + + 传true时不走过滤规则,反之要走配置项过滤规则 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'inserthtml', '<div>我是UEdtior开发者</div>' ,true);
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

insertparagraph

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 在当前光标位置处插入新段落, 如果光标已经在段落之中, 则会在该段落之后插入一个新的段落。 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
 //editor是编辑器实例
+ editor.execCommand( 'insertparagraph' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

justify

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 对段落居左,居右,居中,两端对齐 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd, String align)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+ align + + String + + 对齐方式:left居左,right居右,center居中,justify两端对齐 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'justify', 'center' );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandValue(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 如果选区所在位置是段落区域,返回当前段落对齐方式 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 返回图片对齐方式 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandValue( 'justify' );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandState(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 返回当前选区位置是否是图片 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Int + + 0为是,-1为不是 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandState( 'justify' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

lineheight

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 设置选区的行高 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmdName, String value)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmdName + + String + + 命令字符串 +
+ value + + String + + 传入的行高大小 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'lineheight', '1');
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandValue(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 查询当前选区内容的行高大小 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 返回当前行高大小 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandValue( 'lineheight' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

link

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 插入超链接 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd, Object options)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+ options + + Object + + url地址,title标题,target是否打开新页 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
 editor.execCommand( 'link', '{
+     url:'ueditor.baidu.com',
+     title:'ueditor官网',
+     target:'_blank'
+ }' );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandValue(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 如果选区所在位置是区域,返回当前超链接节点 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Element + + 超链接节点 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandValue( 'link' );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandState(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 返回当前选区位置是否是超链接 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Int + + 0为是,-1为不是 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandState( 'link' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

unlink

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 根据当前选区取消超链接 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'unlink');
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandState(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 返回当前选区位置是否是超链接 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Int + + 0为是,-1为不是 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandState( 'unlink' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

insertorderedlist

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 运行有序列表命令 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String command, String style)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ command + + String + + 命令字符串 +
+ style + + String + + 插入的有序列表类型,值为:decimal,lower-alpha,lower-roman,upper-alpha,upper-roman +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'insertunorderedlist','decimal');
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandState(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 查询当前选区内容是否有序列表 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ int + + 如果当前选区是有序列表返回1,否则返回0 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandState( 'insertorderedlist' );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandValue(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 查询当前选区内容是否有序列表 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 返回当前有序列表的类型,值为null或decimal,lower-alpha,lower-roman,upper-alpha,upper-roman +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandValue( 'insertorderedlist' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

insertunorderedlist

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 运行无序列表命令 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String command, String style)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ command + + String + + 命令字符串 +
+ style + + String + + 插入的无序列表类型,值为:circle,disc,square +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'insertunorderedlist','circle');
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
insertunorderedlist(String command)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 查询当前是否有word文档粘贴进来的图片 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ command + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ int + + 如果当前选区是无序列表返回1,否则返回0 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandState( 'insertunorderedlist' );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandValue(String command)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 查询当前选区内容是否有序列表 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ command + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 返回当前无序列表的类型,值为null或circle,disc,square +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandValue( 'insertunorderedlist' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

music

+
+ 命令 +
+ +
+ +
+ 在当前光标处插入音乐 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(KeyValueMap musicOptions)
+
+ 命令方法 + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ musicOptions + + KeyValueMap + + 插入音乐的参数项, 支持的key有: url=>音乐地址; + width=>音乐容器宽度;height=>音乐容器高度;align=>音乐文件的对齐方式, 可选值有: left, center, right, none +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
+6
+7
+8
 //editor是编辑器实例
+ //在编辑器里插入一个“植物大战僵尸”的APP
+ editor.execCommand( 'music' , {
+     width: 400,
+     height: 95,
+     align: "center",
+     url: "音乐地址"
+ } );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

pagebreak

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 插入分页符,在当前光标插入分页符 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'pagebreak'); //插入一个hr标签,带有样式类名pagebreak
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

paragraph

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 对选区内文本添加相应标签嵌套 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd, String style, Object attrs)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+ style + + String + + 标签值为:'p', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6' +
+ attrs + + Object + + 标签的属性 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 editor.execCommand( 'Paragraph','h1','{
+     color:'#000'
+ }' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

Paragraph

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 对选区内文本添加相应标签嵌套 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd, String style, Object attrs, String sourceCmdName)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+ style + + String + + 标签值为:'p', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6' +
+ attrs + + Object + + 标签的属性 +
+ sourceCmdName + + String + + 对与customstyle特殊处理 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 editor.execCommand( 'Paragraph','h1','{
+     color:'#000'
+ }' );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandValue(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 返回选区内节点标签名 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 节点标签名 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandValue( 'Paragraph' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

preview

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 预览 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'preview' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

print

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 打印 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'print' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

pasteplain

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 启用或取消纯文本粘贴模式 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandState( 'pasteplain' );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandState(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 查询当前是否处于纯文本粘贴模式 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ int + + 如果处于纯文本模式,返回1,否则,返回0 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandState( 'pasteplain' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

removeformat

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 对图片居左居中居右排版 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd, String tags, String style, String attrs, String notIncluedA)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+ tags + + String + + 以逗号隔开的标签。如:span,a +
+ style + + String + + 样式 +
+ attrs + + String + + 属性 +
+ notIncluedA + + String + + 是否把a标签切开 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'removeformat', 'center' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

rowspacing

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 设置段前距,段后距 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd, String value, String dir)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+ value + + String + + 传入段间距的值,以px为单位 +
+ dir + + String + + 传入间距位置,top或bottom,分别表示段前和段后 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'rowspacing', '10', 'top' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

selectall

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 选中编辑器里的所有内容 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'selectall' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

snapscreen

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 截屏 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 //editor是编辑器实例
+ //执行截屏命令, 需要服务器端配合接收图片
+ editor.execCommand( 'snapscreen' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

source

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 切换源码编辑模式和可视化编辑模式 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'source');
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandState(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 查询当前编辑区域的状态是源码模式还是可视化模式 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ int + + 如果当前是源码编辑模式,返回1,否则返回0 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandState( 'source' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

time

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 插入当前时间,插入的格式:12:59:59 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'time');
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

date

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 插入当前日期,插入格式:2013-08-30 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand( 'date');
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

insertvideo

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 插入视频 +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(String cmd, Array videoArr)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 命令字符串 +
+ videoArr + + Array + + 需要插入的视频的数组, 其中的每一个元素都是一个键值对对象, 描述了一个视频的所有属性 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
 //editor 是编辑器实例
+ editor.execCommand( 'insertvideo', [  ] );
+
+
+
+ +
+ + +
+
+ + + +
+
+ +
queryCommandState(String cmd)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 查询当前光标所在处是否是一个视频 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 需要查询的命令字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ int + + 如果当前光标所在处的元素是一个视频对象, 则返回1,否则返回0 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
 //editor 是编辑器实例
+ editor.queryCommandState( 'insertvideo' );
+
+
+
+ +
+ + +
+
+ +
+ +
+ +
+

webapp

+
+ 命令 +
+ + + 1.2.6.1 + + +
+ +
+ 在当前光标处插入一个百度应用, 需要百度APPKey +
+ + + 方法列表 + + + + + +
+
+ +
execCommand(KeyValueMap appOptions)
+
+ 命令方法 + + + 1.2.6.1 + + +
+ +
+ 执行当前命令 +
+ + + + + +
+ +
+ + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ appOptions + + KeyValueMap + + 应用所需的参数项, 支持的key有: title=>应用标题, width=>应用容器宽度, + height=>应用容器高度,logo=>应用logo,url=>应用地址 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
+6
+7
+8
+9
 //editor是编辑器实例
+ //在编辑器里插入一个“植物大战僵尸”的APP
+ editor.execCommand( 'webapp' , {
+     title: '植物大战僵尸',
+     width: 560,
+     height: 465,
+     logo: '应用展示的图片',
+     url: '百度应用的地址'
+ } );
+
+
+
+ +
+ + +
+
+ +
+ +
+
+ +
+
+

UE

+
+ 模块 +
+
+ +
+ +
+ UEditor公用空间,UEditor所有的功能都挂载在该空间下 +
+ + + + + +
+ +
+ +
+ + + + + + 方法列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
方法签名静态描述
+ getListener(Object obj, String type, Boolean force) + + 是 + + 获得对象所拥有监听类型的所有监听器 +
+ filterNode(Object root, Object rules) + + 是 + + 根据传入节点和过滤规则过滤相应节点 +
+ filterWord(String html) + + 是 + + 根据传入html字符串过滤word +
+ htmlparser(String htmlstr, Boolean ignoreBlank) + + 是 + + html字符串转换成uNode节点的静态方法 +
+
+ + + + + 类列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
类名描述
+ Editor + + UEditor的核心类,为用户提供与编辑器交互的接口。 +
+ EventBase + + UE采用的事件基类,继承此类的对应类将获取addListener,removeListener,fireEvent方法。 + 在UE中,Editor以及所有ui实例都继承了该类,故可以在对应的ui对象以及editor对象上使用上述方法。 +
+ uNode + + 编辑器模拟的节点类 +
+
+ + +
+ +
+ + + + 模块成员详细描述(UE) + +
+ + + + + +
+
+

getListener(Object obj, String type, Boolean force)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获得对象所拥有监听类型的所有监听器 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ obj + + Object + + 查询监听器的对象 +
+ type + + String + + 事件类型 +
+ force + + Boolean + + 为true且当前所有type类型的侦听器不存在时,创建一个空监听器数组 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Array + + 监听器数组 +
+
+ + + + +
+
+
+

filterNode(Object root, Object rules)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 根据传入节点和过滤规则过滤相应节点 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ root + + Object + + 指定root节点 +
+ rules + + Object + + 过滤规则json对象 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 UE.filterNode(root,editor.options.filterRules);
+
+
+
+ +
+ + +
+
+
+

filterWord(String html)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 根据传入html字符串过滤word +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ html + + String + + html字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 UE.filterWord(html);
+
+
+
+ +
+ + +
+
+
+

htmlparser(String htmlstr, Boolean ignoreBlank)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ html字符串转换成uNode节点的静态方法 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ htmlstr + + String + + 要转换的html代码 +
+ ignoreBlank + + Boolean + + 若设置为true,转换的时候忽略\n\r\t等空白字符 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 var root = UE.htmlparser('<p><b>htmlparser</b></p>', true);
+
+
+
+ +
+ + +
+
+ + + + +
+
+

Editor

+
+ +
+
+ +
+ +
+ UEditor的核心类,为用户提供与编辑器交互的接口。 +
+ + + + + +
+
+ 所属模块: UE +
+
+ +
+ +
+
+ + + + + + 事件列表 + + + + + + + + + + + + + + + + + + + + +
事件名描述
+ ready + + 编辑器准备就绪后会触发该事件 +
+ selectionchange + + 每当编辑器内部选区发生改变后, 将触发该事件 +
+
+ + + + + 构造器列表 + + + + + + + + + + + + + + + + + + + + +
方法签名描述
+ Editor() + + 以默认参数构建一个编辑器实例 +
+ Editor(KeyValueMap setting) + + 以给定的参数集合创建一个编辑器对象,对于未指定的参数,将应用默认参数。 +
+
+ + + + + 方法列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
方法签名静态描述
+ setValue(UE.Editor editor) + + 否 + + 获取编辑器的html内容,赋值到编辑器所在表单的textarea文本域里面 +
+ loadPlugins(UE.Editor editor) + + 否 + + 初始化插件 +
+ checkCurLang(KeyValueMap I18N) + + 否 + + 获取语言包里面的第一个 +
+ ready(Function fn) + + 否 + + 编辑器对外提供的监听ready事件的接口, 通过调用该方法,达到的效果与监听ready事件是一致的 +
+ setOpt(String key, * val) + + 否 + + 该方法是提供给插件里面使用,以key,value的方式设置插件内用到的配置项默认值 +
+ setOpt() + + 否 + + 该方法是提供给插件里面使用,以{key:value}集合的方式设置插件内用到的配置项默认值 +
+ destroy() + + 否 + + 销毁编辑器实例对象 +
+ render(String containerId) + + 否 + + 渲染编辑器的DOM到指定容器 +
+ render(Element containerDom) + + 否 + + 渲染编辑器的DOM到指定容器 +
+ _setup(Element doc) + + 否 + + 编辑器初始化 +
+ sync() + + 否 + + 从编辑器的容器节点向上查找form元素,若找到,就同步编辑内容到找到的form里,为提交数据做准备,主要用于是手动提交的情况 + 后台取得数据的键值,使用你容器上的name属性,如果没有就使用参数里的textarea项 +
+ sync(String formID) + + 否 + + 根据传入的formId,在页面上查找要同步数据的表单,若找到,就同步编辑内容到找到的form里,为提交数据做准备,主要用于是手动提交的情况 + 后台取得数据的键值,使用你容器上的name属性,如果没有就使用参数里的textarea项 +
+ setHeight(Number number) + + 否 + + 设置编辑器高度 +
+ addshortcutkey(KeyValueMap keyset) + + 否 + + 这个接口是为插件扩展提供的接口,主要是为新添加的插件,如果需要添加快捷键,所提供的接口 +
+ addshortcutkey(String cmd, String keys) + + 否 + + 这个接口是为插件扩展提供的接口,主要是为新添加的插件,如果需要添加快捷键,所提供的接口 +
+ _bindshortcutKeys() + + 否 + + 对编辑器设置keydown事件监听,绑定快捷键和命令,当快捷键组合触发成功,会响应对应的命令 +
+ getContent() + + 否 + + 获取编辑器的内容 +
+ getContent(Function fn) + + 否 + + 获取编辑器的内容。 可以通过参数定义编辑器内置的判空规则 +
+ getAllHtml() + + 否 + + 取得完整的html代码,可以直接显示成完整的html文档 +
+ getPlainTxt() + + 否 + + 得到编辑器的纯文本内容,但会保留段落格式 +
+ getContentTxt() + + 否 + + 获取编辑器中的纯文本内容,没有段落格式 +
+ setContent() + + 否 + + 设置编辑器的内容,可修改编辑器当前的html内容 +
+ setContent(String html, Boolean isAppendTo) + + 否 + + 设置编辑器的内容,可修改编辑器当前的html内容 +
+ setContent(String html, Boolean isAppendTo, Boolean notFireSelectionchange) + + 否 + + 设置编辑器的内容,可修改编辑器当前的html内容 +
+ focus() + + 否 + + 让编辑器获得焦点,默认focus到编辑器头部 +
+ focus(Boolean toEnd) + + 否 + + 让编辑器获得焦点,toEnd确定focus位置 +
+ _initEvents() + + 否 + + 初始化UE事件及部分事件代理 +
+ _proxyDomEvent() + + 否 + + 触发事件代理 +
+ _selectionChange() + + 否 + + 变化选区 +
+ _callCmdFn(String fnName, * args) + + 否 + + 执行编辑命令 +
+ execCommand() + + 否 + + 执行编辑命令cmdName,完成富文本编辑效果 +
+ queryCommandState() + + 否 + + 根据传入的command命令,查选编辑器当前的选区,返回命令的状态 +
+ queryCommandValue() + + 否 + + 根据传入的command命令,查选编辑器当前的选区,根据命令返回相关的值 +
+ hasContents() + + 否 + + 检查编辑区域中是否有内容 +
+ hasContents(Array tags) + + 否 + + 检查编辑区域中是否有内容,若包含参数tags中的节点类型,直接返回true +
+ reset() + + 否 + + 重置编辑器,可用来做多个tab使用同一个编辑器实例 +
+ setEnabled() + + 否 + + 设置当前编辑区域可以编辑 +
+ enable() + + 否 + + 设置当前编辑区域可以编辑 +
+ setDisabled() + + 否 + + 设置当前编辑区域不可编辑 +
+ setDisabled(String except) + + 否 + + 设置当前编辑区域不可编辑,except中的命令除外 +
+ setDisabled(Array except) + + 否 + + 设置当前编辑区域不可编辑,except中的命令除外 +
+ disable() + + 否 + + 设置当前编辑区域不可编辑 +
+ disable(String except) + + 否 + + 设置当前编辑区域不可编辑,except中的命令除外 +
+ disable(Array except) + + 否 + + 设置当前编辑区域不可编辑,except中的命令除外 +
+ _setDefaultContent(String cont) + + 否 + + 设置默认内容 +
+ setShow() + + 否 + + 显示编辑器,show方法的兼容版本 +
+ show() + + 否 + + 显示编辑器 +
+ setHide() + + 否 + + 隐藏编辑器,hide方法的兼容版本 +
+ hide() + + 否 + + 隐藏编辑器 +
+ getLang(String path) + + 否 + + 根据指定的路径,获取对应的语言资源 +
+ getContentLength() + + 否 + + 计算编辑器当前html内容的长度 +
+ getContentLength(Boolean ingoneHtml) + + 否 + + 计算编辑器当前存文本内容的长度 +
+ getContentLength(Boolean ingoneHtml, Array tagNames) + + 否 + + 计算编辑器当前内容的长度 +
+ addInputRule(Function rule) + + 否 + + 添加输入过滤规则 +
+ filterInputRule(UE.uNode root) + + 否 + + 根据输入过滤规则,过滤编辑器内容 +
+ addOutputRule(Function rule) + + 否 + + 添加输出过滤规则 +
+ filterOutputRule(UE.uNode root) + + 否 + + 根据输出过滤规则,过滤编辑器内容 +
+
+ + +
+ +
+ + + + 类成员详细描述(Editor) + +
+ + + + + + +
+
+

ready

+
+ 事件 +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 编辑器准备就绪后会触发该事件 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 editor.addListener( 'ready', function( editor ) {
+     editor.execCommand( 'focus' );
+ } );
+
+
+
+ +
+ + + +
+
+ +
+
+

selectionchange

+
+ 事件 +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 每当编辑器内部选区发生改变后, 将触发该事件 +
+ + + + + + +
    +
  • + 警告: 该事件的触发非常频繁,不建议在该事件的处理过程中做重量级的处理 +
  • +
+ + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 editor.addListener( 'selectionchange', function( editor ) {
+     console.log('选区发生改变');
+ }
+
+
+
+ +
+ + + +
+
+ + + + + +
+
+

Editor()

+
+ 构造器 +
+ + + 1.2.6.1 + + +
+
+ +
+ 以默认参数构建一个编辑器实例 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+
+ + + + + 参考 +
+ + + +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
 var editor = new UE.Editor();
+ editor.execCommand('blod');
+
+
+
+ +
+ + +
+
+ +
+
+

Editor(KeyValueMap setting)

+
+ 构造器 +
+ + + 1.2.6.1 + + +
+
+ +
+ 以给定的参数集合创建一个编辑器对象,对于未指定的参数,将应用默认参数。 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+
+ + + + + 参考 +
+ + + +
+
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ setting + + KeyValueMap + + 创建编辑器的参数 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
 var editor = new UE.Editor();
+ editor.execCommand('blod');
+
+
+
+ +
+ + +
+
+ + + + + +
+
+

setValue(UE.Editor editor)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取编辑器的html内容,赋值到编辑器所在表单的textarea文本域里面 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ editor + + UE.Editor + + 编辑器事例 +
+
+ + + + + + +
+
+ +
+
+

loadPlugins(UE.Editor editor)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 初始化插件 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ editor + + UE.Editor + + 编辑器事例 +
+
+ + + + + + +
+
+ +
+
+

checkCurLang(KeyValueMap I18N)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取语言包里面的第一个 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ I18N + + KeyValueMap + + 编辑器事例 +
+
+ + + + + + +
+
+ +
+
+

ready(Function fn)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 编辑器对外提供的监听ready事件的接口, 通过调用该方法,达到的效果与监听ready事件是一致的 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ fn + + Function + + 编辑器ready之后所执行的回调, 如果在注册事件之前编辑器已经ready,将会 + 立即触发该回调。 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 editor.ready( function( editor ) {
+     editor.setContent('初始化完毕');
+ } );
+
+
+
+ +
+ + +
+
+ +
+
+

setOpt(String key, * val)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 该方法是提供给插件里面使用,以key,value的方式设置插件内用到的配置项默认值 +
+ + + + + + +
    +
  • + 警告: 在config文件里面有定义参数key或者用户实例化的时候有传入参数key,该方法设置的key参数值无效 +
  • +
+ +
    +
  • + 警告: 该方法仅供编辑器插件内部和编辑器初始化时调用,其他地方不能调用。 +
  • +
+ + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ key + + String + + 编辑器的可接受的选项名称 +
+ val + + * + + 该选项可接受的值 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.setOpt( 'initContent', '欢迎使用编辑器' );
+
+
+
+ +
+ + +
+
+ +
+
+

setOpt()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 该方法是提供给插件里面使用,以{key:value}集合的方式设置插件内用到的配置项默认值 +
+ + + + + + +
    +
  • + 警告: 在config文件里面有定义参数key或者用户实例化的时候有传入参数key,该方法设置的key参数值无效 +
  • +
+ +
    +
  • + 警告: 该方法仅供编辑器插件内部和编辑器初始化时调用,其他地方不能调用。 +
  • +
+ + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 editor.setOpt( {
+     'initContent': '欢迎使用编辑器'
+ } );
+
+
+
+ +
+ + +
+
+ +
+
+

destroy()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 销毁编辑器实例对象 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.destroy();
+
+
+
+ +
+ + +
+
+ +
+
+

render(String containerId)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 渲染编辑器的DOM到指定容器 +
+ + + + + + +
    +
  • + 警告: 必须且只能调用一次 +
  • +
+ + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ containerId + + String + + 指定一个容器ID +
+
+ + + + + + +
+
+ +
+
+

render(Element containerDom)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 渲染编辑器的DOM到指定容器 +
+ + + + + + +
    +
  • + 警告: 必须且只能调用一次 +
  • +
+ + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ containerDom + + Element + + 直接指定容器对象 +
+
+ + + + + + +
+
+ +
+
+

_setup(Element doc)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 编辑器初始化 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ doc + + Element + + 编辑器Iframe中的文档对象 +
+
+ + + + + + +
+
+ +
+
+

sync()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 从编辑器的容器节点向上查找form元素,若找到,就同步编辑内容到找到的form里,为提交数据做准备,主要用于是手动提交的情况 + 后台取得数据的键值,使用你容器上的name属性,如果没有就使用参数里的textarea项 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
 editor.sync();
+ form.sumbit(); //form变量已经指向了form元素
+
+
+
+ +
+ + +
+
+ +
+
+

sync(String formID)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 根据传入的formId,在页面上查找要同步数据的表单,若找到,就同步编辑内容到找到的form里,为提交数据做准备,主要用于是手动提交的情况 + 后台取得数据的键值,使用你容器上的name属性,如果没有就使用参数里的textarea项 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ formID + + String + + 指定一个要同步数据的form的id,编辑器的数据会同步到你指定form下 +
+
+ + + + + + +
+
+ +
+
+

setHeight(Number number)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 设置编辑器高度 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ number + + Number + + 设置的高度值,纯数值,不带单位 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.setHeight(number);
+
+
+
+ +
+ + +
+
+ +
+
+

addshortcutkey(KeyValueMap keyset)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 这个接口是为插件扩展提供的接口,主要是为新添加的插件,如果需要添加快捷键,所提供的接口 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ keyset + + KeyValueMap + + 命令和快捷键的键值对对象,多个按钮的快捷键用“+”分隔 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
 editor.addshortcutkey({
+     "Bold" : "ctrl+66",//^B
+     "Italic" : "ctrl+73", //^I
+ });
+
+
+
+ +
+ + +
+
+ +
+
+

addshortcutkey(String cmd, String keys)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 这个接口是为插件扩展提供的接口,主要是为新添加的插件,如果需要添加快捷键,所提供的接口 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cmd + + String + + 触发快捷键时,响应的命令 +
+ keys + + String + + 快捷键的字符串,多个按钮用“+”分隔 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.addshortcutkey("Underline", "ctrl+85"); //^U
+
+
+
+ +
+ + +
+
+ +
+
+

_bindshortcutKeys()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 对编辑器设置keydown事件监听,绑定快捷键和命令,当快捷键组合触发成功,会响应对应的命令 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + + +
+
+ +
+
+

getContent()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取编辑器的内容 +
+ + + + + + +
    +
  • + 警告: 该方法获取到的是经过编辑器内置的过滤规则进行过滤后得到的内容 +
  • +
+ + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 编辑器的内容字符串, 如果编辑器的内容为空,或者是空的标签内容(如:”


“), 则返回空字符串 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 var content = editor.getContent();
+
+
+
+ +
+ + +
+
+ +
+
+

getContent(Function fn)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取编辑器的内容。 可以通过参数定义编辑器内置的判空规则 +
+ + + + +
    +
  • + 提示: 该方法在处理包含有初始化内容的时候能起到很好的作用。 +
  • +
+ + + + + + + +
    +
  • + 警告: 该方法获取到的是经过编辑器内置的过滤规则进行过滤后得到的内容 +
  • +
+ + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ fn + + Function + + 自定的判空规则, 要求该方法返回一个boolean类型的值, + 代表当前编辑器的内容是否空, + 如果返回true, 则该方法将直接返回空字符串;如果返回false,则编辑器将返回 + 经过内置过滤规则处理后的内容。 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 编辑器的内容字符串 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
 // editor 是一个编辑器的实例
+ var content = editor.getContent( function ( editor ) {
+      return editor.body.innerHTML === '欢迎使用UEditor';
+ } );
+
+
+
+ +
+ + +
+
+ +
+
+

getAllHtml()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 取得完整的html代码,可以直接显示成完整的html文档 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 编辑器的内容html文档字符串 +
+
+ + + + +
+
+ +
+
+

getPlainTxt()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 得到编辑器的纯文本内容,但会保留段落格式 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 编辑器带段落格式的纯文本内容字符串 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.getPlainTxt();
+
+
+
+ +
+ + +
+
+ +
+
+

getContentTxt()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取编辑器中的纯文本内容,没有段落格式 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 编辑器不带段落格式的纯文本内容字符串 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.getContentTxt();
+
+
+
+ +
+ + +
+
+ +
+
+

setContent()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 设置编辑器的内容,可修改编辑器当前的html内容 +
+ + + + + + +
    +
  • + 警告: 通过该方法插入的内容,是经过编辑器内置的过滤规则进行过滤后得到的内容 +
  • +
+ +
    +
  • + 警告: 该方法会出发selectionchange事件 +
  • +
+ + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + +
参数名类型描述
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.getContent('<p>test</p>');
+
+
+
+ +
+ + +
+
+ +
+
+

setContent(String html, Boolean isAppendTo)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 设置编辑器的内容,可修改编辑器当前的html内容 +
+ + + + + + +
    +
  • + 警告: 通过该方法插入的内容,是经过编辑器内置的过滤规则进行过滤后得到的内容 +
  • +
+ +
    +
  • + 警告: 该方法会出发selectionchange事件 +
  • +
+ + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ html + + String + + 要插入的html内容 +
+ isAppendTo + + Boolean + + 若传入true,不清空原来的内容,在最后插入内容,否则,清空内容再插入 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
 //假设设置前的编辑器内容是 <p>old text</p>
+ editor.getContent('<p>new text</p>', true); //插入的结果是<p>old text</p><p>new text</p>
+
+
+
+ +
+ + +
+
+ +
+
+

setContent(String html, Boolean isAppendTo, Boolean notFireSelectionchange)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 设置编辑器的内容,可修改编辑器当前的html内容 +
+ + + + + + +
    +
  • + 警告: 通过该方法插入的内容,是经过编辑器内置的过滤规则进行过滤后得到的内容 +
  • +
+ + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ html + + String + + 要插入的html内容 +
+ isAppendTo + + Boolean + + 若传入true,不清空原来的内容,在最后插入内容,否则,清空内容再插入 +
+ notFireSelectionchange + + Boolean + + 若传入true,执行该函数过程不触发编辑器的selectionchange事件 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.getContent('<p>new text</p>', false, true);
+
+
+
+ +
+ + +
+
+ +
+
+

focus()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 让编辑器获得焦点,默认focus到编辑器头部 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.focus()
+
+
+
+ +
+ + +
+
+ +
+
+

focus(Boolean toEnd)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 让编辑器获得焦点,toEnd确定focus位置 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ toEnd + + Boolean + + 默认focus到编辑器头部,toEnd为true时focus到内容尾部 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.focus(true)
+
+
+
+ +
+ + +
+
+ +
+
+

_initEvents()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 初始化UE事件及部分事件代理 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + + +
+
+ +
+
+

_proxyDomEvent()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 触发事件代理 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ * + + fireEvent的返回值 +
+
+ + + + +
+
+ +
+
+

_selectionChange()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 变化选区 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + + +
+
+ +
+
+

_callCmdFn(String fnName, * args)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 执行编辑命令 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ fnName + + String + + 函数名称 +
+ args + + * + + 传给命令函数的参数 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ * + + 返回命令函数运行的返回值 +
+
+ + + + +
+
+ +
+
+

execCommand()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 执行编辑命令cmdName,完成富文本编辑效果 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ * + + 返回命令函数运行的返回值 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.execCommand(cmdName);
+
+
+
+ +
+ + +
+
+ +
+
+

queryCommandState()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 根据传入的command命令,查选编辑器当前的选区,返回命令的状态 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Number + + number 返回放前命令的状态 + 返回 -1 当前命令不可用 + 返回 0 当前命令可用 + 返回 1 当前命令已经执行过了 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.queryCommandState(cmdName)  => (-1|0|1)
+
+
+
+ +
+ + +
+
+ +
+
+

queryCommandValue()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 根据传入的command命令,查选编辑器当前的选区,根据命令返回相关的值 +
+ + + + +
    +
  • + 提示: 只有部分插件有此方法 +
  • +
+ + + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ * + + 返回每个命令特定的当前状态值 +
+
+ + + + +
+
+ +
+
+

hasContents()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检查编辑区域中是否有内容 +
+ + + + +
    +
  • + 提示: 默认有文本内容,或者有以下节点都不认为是空 + table,ul,ol,dl,iframe,area,base,col,hr,img,embed,input,link,meta,param +
  • +
+ + + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 检查有内容返回true,否则返回false +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.hasContents()
+
+
+
+ +
+ + +
+
+ +
+
+

hasContents(Array tags)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检查编辑区域中是否有内容,若包含参数tags中的节点类型,直接返回true +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ tags + + Array + + 传入数组判断时用到的节点类型 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 若文档中包含tags数组里对应的tag,返回true,否则返回false +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.hasContents(['span']);
+
+
+
+ +
+ + +
+
+ +
+
+

reset()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 重置编辑器,可用来做多个tab使用同一个编辑器实例 +
+ + + + +
    +
  • + 提示: 此方法会清空编辑器内容,清空回退列表 +
  • +
+ + + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.reset()
+
+
+
+ +
+ + +
+
+ +
+
+

setEnabled()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 设置当前编辑区域可以编辑 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.setEnabled()
+
+
+
+ +
+ + +
+
+ +
+
+

enable()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 设置当前编辑区域可以编辑 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ * + + 返回setEnabled方法的返回值 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.enable()
+
+
+
+ +
+ + +
+
+ +
+
+

setDisabled()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 设置当前编辑区域不可编辑 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + + +
+
+ +
+
+

setDisabled(String except)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 设置当前编辑区域不可编辑,except中的命令除外 +
+ + + + +
    +
  • + 提示: 即使设置了disable,此处配置的例外命令仍然可以执行 +
  • +
+ + + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ except + + String + + 例外命令的字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.setDisabled('bold'); //禁用工具栏中除加粗之外的所有功能
+
+
+
+ +
+ + +
+
+ +
+
+

setDisabled(Array except)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 设置当前编辑区域不可编辑,except中的命令除外 +
+ + + + +
    +
  • + 提示: 即使设置了disable,此处配置的例外命令仍然可以执行 +
  • +
+ + + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ except + + Array + + 字符串数组,数组中的命令仍然可以执行 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.setDisabled(['bold','insertimage']); //禁用工具栏中除加粗和插入图片之外的所有功能
+
+
+
+ +
+ + +
+
+ +
+
+

disable()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 设置当前编辑区域不可编辑 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + + +
+
+ +
+
+

disable(String except)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 设置当前编辑区域不可编辑,except中的命令除外 +
+ + + + +
    +
  • + 提示: 即使设置了disable,此处配置的例外命令仍然可以执行 +
  • +
+ + + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ except + + String + + 例外命令的字符串 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.disable('bold'); //禁用工具栏中除加粗之外的所有功能
+
+
+
+ +
+ + +
+
+ +
+
+

disable(Array except)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 设置当前编辑区域不可编辑,except中的命令除外 +
+ + + + +
    +
  • + 提示: 即使设置了disable,此处配置的例外命令仍然可以执行 +
  • +
+ + + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ except + + Array + + 字符串数组,数组中的命令仍然可以执行 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.disable(['bold','insertimage']); //禁用工具栏中除加粗和插入图片之外的所有功能
+
+
+
+ +
+ + +
+
+ +
+
+

_setDefaultContent(String cont)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 设置默认内容 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cont + + String + + 要存入的内容 +
+
+ + + + + + +
+
+ +
+
+

setShow()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 显示编辑器,show方法的兼容版本 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + + +
+
+ +
+
+

show()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 显示编辑器 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.show()
+
+
+
+ +
+ + +
+
+ +
+
+

setHide()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 隐藏编辑器,hide方法的兼容版本 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + + +
+
+ +
+
+

hide()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 隐藏编辑器 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.hide()
+
+
+
+ +
+ + +
+
+ +
+
+

getLang(String path)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 根据指定的路径,获取对应的语言资源 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ path + + String + + 路径根据的是lang目录下的语言文件的路径结构 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ KeyValueMap | String + + 根据路径返回语言资源的Json格式对象或者语言字符串 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.getLang('contextMenu.delete'); //如果当前是中文,那返回是的是'删除'
+
+
+
+ +
+ + +
+
+ +
+
+

getContentLength()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 计算编辑器当前html内容的长度 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Number + + 返回计算的长度 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.getContentLength()
+
+
+
+ +
+ + +
+
+ +
+
+

getContentLength(Boolean ingoneHtml)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 计算编辑器当前存文本内容的长度 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ ingoneHtml + + Boolean + + 传入true时,只按照纯文本来计算 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Number + + 返回计算的长度,内容中有hr/img/iframe标签,长度加1 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.getContentLength(true)
+
+
+
+ +
+ + +
+
+ +
+
+

getContentLength(Boolean ingoneHtml, Array tagNames)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 计算编辑器当前内容的长度 +
+ + + + +
    +
  • + 提示: 当ingoneHtml为false,第二个参数不作用 +
  • +
+ + + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ ingoneHtml + + Boolean + + 传入true时,只按照纯文本来计算 +
+ tagNames + + Array + + 忽略html代码时,遇到数组里的标签,长度加1 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Number + + 返回计算的长度,内容中有hr/img/iframe标签或者参数tagNames中的标签,长度加1 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.getContentLength(true, ['em','strong'])
+
+
+
+ +
+ + +
+
+ +
+
+

addInputRule(Function rule)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 添加输入过滤规则 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ rule + + Function + + 要添加的过滤规则 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
 editor.addInputRule(function(root){
+   $.each(root.getNodesByTagName('div'),function(i,node){
+       node.tagName="p";
+   });
+ });
+
+
+
+ +
+ + +
+
+ +
+
+

filterInputRule(UE.uNode root)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 根据输入过滤规则,过滤编辑器内容 +
+ + + + +
    +
  • + 提示: 执行editor.setContent方法和执行'inserthtml'命令后,会运行该过滤函数 +
  • +
+ + + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ root + + UE.uNode + + 要过滤的uNode节点 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.filterInputRule(editor.body);
+
+
+
+ +
+ + +
+
+ +
+
+

addOutputRule(Function rule)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 添加输出过滤规则 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ rule + + Function + + 要添加的过滤规则 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
 editor.addOutputRule(function(root){
+   $.each(root.getNodesByTagName('p'),function(i,node){
+       node.tagName="div";
+   });
+ });
+
+
+
+ +
+ + +
+
+ +
+
+

filterOutputRule(UE.uNode root)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 根据输出过滤规则,过滤编辑器内容 +
+ + + + +
    +
  • + 提示: 执行editor.getContent方法的时候,会先运行该过滤函数 +
  • +
+ + + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.Editor +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ root + + UE.uNode + + 要过滤的uNode节点 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.filterOutputRule(editor.body);
+
+
+
+ +
+ + +
+
+ + +
+
+ + +
+
+ +
+ +
+
+

EventBase

+
+ +
+
+ +
+ +
+ UE采用的事件基类,继承此类的对应类将获取addListener,removeListener,fireEvent方法。 + 在UE中,Editor以及所有ui实例都继承了该类,故可以在对应的ui对象以及editor对象上使用上述方法。 +
+ + + + + +
+
+ 所属模块: UE +
+
+ +
+ +
+
+ + + + + + + + 构造器列表 + + + + + + + + + + + + + + + +
方法签名描述
+ EventBase() + + 通过此构造器,子类可以继承EventBase获取事件监听的方法 +
+
+ + + + + 方法列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
方法签名静态描述
+ addListener(String types, Function fn) + + 否 + + 注册事件监听器 +
+ removeListener(String types, Function fn) + + 否 + + 移除事件监听器 +
+ fireEvent(String types) + + 否 + + 触发事件 +
+ fireEvent(String types, *... options) + + 否 + + 触发事件 +
+
+ + +
+ +
+ + + + 类成员详细描述(EventBase) + +
+ + + + + + + + + + +
+
+

EventBase()

+
+ 构造器 +
+ + + 1.2.6.1 + + +
+
+ +
+ 通过此构造器,子类可以继承EventBase获取事件监听的方法 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.EventBase +
+ +
+ +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 UE.EventBase.call(editor);
+
+
+
+ +
+ + +
+
+ + + + + +
+
+

addListener(String types, Function fn)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 注册事件监听器 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.EventBase +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ types + + String + + 监听的事件名称,同时监听多个事件使用空格分隔 +
+ fn + + Function + + 监听的事件被触发时,会执行该回调函数 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
 editor.addListener('selectionchange',function(){
+      console.log("选区已经变化!");
+ })
+ editor.addListener('beforegetcontent aftergetcontent',function(type){
+         if(type == 'beforegetcontent'){
+             //do something
+         }else{
+             //do something
+         }
+         console.log(this.getContent) // this是注册的事件的编辑器实例
+ })
+
+
+
+ +
+ + +
+
+ +
+
+

removeListener(String types, Function fn)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 移除事件监听器 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.EventBase +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ types + + String + + 移除的事件名称,同时移除多个事件使用空格分隔 +
+ fn + + Function + + 移除监听事件的函数引用 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
 //changeCallback为方法体
+ editor.removeListener("selectionchange",changeCallback);
+
+
+
+ +
+ + +
+
+ +
+
+

fireEvent(String types)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 触发事件 +
+ + + + +
    +
  • + 提示: 该方法会触发addListener +
  • +
+ + + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.EventBase +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ types + + String + + 触发的事件名称,同时触发多个事件使用空格分隔 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ * + + 返回触发事件的队列中,最后执行的回调函数的返回值 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.fireEvent("selectionchange");
+
+
+
+ +
+ + +
+
+ +
+
+

fireEvent(String types, *... options)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 触发事件 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.EventBase +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ types + + String + + 触发的事件名称,同时触发多个事件使用空格分隔 +
+ options + + *... + + 可选参数,可以传入一个或多个参数,会传给事件触发的回调函数 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.fireEvent("selectionchange");
+
+
+
+ +
+ + +
+
+ + +
+
+ + +
+
+ +
+ +
+
+

uNode

+
+ +
+
+ +
+ +
+ 编辑器模拟的节点类 +
+ + + + + +
+
+ 所属模块: UE +
+
+ +
+ +
+
+ + + + + + + + 构造器列表 + + + + + + + + + + + + + + + +
方法签名描述
+ uNode() + + 通过一个键值对,创建一个uNode对象 +
+
+ + + + + 方法列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
方法签名静态描述
+ toHtml() + + 否 + + 当前节点对象,转换成html文本 +
+ toHtml(Boolean formatter) + + 否 + + 当前节点对象,转换成html文本 +
+ innerHTML() + + 否 + + 获取节点的html内容 +
+ innerHTML(String htmlstr) + + 否 + + 设置节点的html内容 +
+ innerText() + + 否 + + 获取节点的纯文本内容 +
+ innerText(String textStr) + + 否 + + 获取节点的纯文本内容 +
+ getData() + + 否 + + 获取当前对象的data属性 +
+ firstChild() + + 否 + + 获取当前节点下的第一个子节点 +
+ lastChild() + + 否 + + 获取当前节点下的最后一个子节点 +
+ previousSibling() + + 否 + + 获取和当前节点有相同父亲节点的前一个节点 +
+ nextSibling() + + 否 + + 获取和当前节点有相同父亲节点的后一个节点 +
+ replaceChild(UE.uNode target, UE.uNode source) + + 否 + + 用新的节点替换当前节点 +
+ appendChild(UE.uNode node) + + 否 + + 在节点的子节点列表最后位置插入一个节点 +
+ insertBefore(UE.uNode target, UE.uNode source) + + 否 + + 在传入节点的前面插入一个节点 +
+ insertAfter(UE.uNode target, UE.uNode source) + + 否 + + 在传入节点的后面插入一个节点 +
+ removeChild(UE.uNode node, Boolean keepChildren) + + 否 + + 从当前节点的子节点列表中,移除节点 +
+ getAttr(String attrName) + + 否 + + 获取当前节点所代表的元素属性,即获取attrs对象下的属性值 +
+ getAttr(String attrName, * attrVal) + + 否 + + 设置当前节点所代表的元素属性,即设置attrs对象下的属性值 +
+ getIndex() + + 否 + + 获取当前节点在父节点下的位置索引 +
+ getNodeById(String id) + + 否 + + 在当前节点下,根据id查找节点 +
+ getNodeById(String tagNames) + + 否 + + 在当前节点下,根据元素名称查找节点列表 +
+ getStyle(String name) + + 否 + + 根据样式名称,获取节点的样式值 +
+ setStyle(String name, String val) + + 否 + + 给节点设置样式 +
+ traversal(Function fn) + + 否 + + 传入一个函数,递归遍历当前节点下的所有节点 +
+
+ + +
+ +
+ + + + 类成员详细描述(uNode) + +
+ + + + + + + + + + +
+
+

uNode()

+
+ 构造器 +
+ + + 1.2.6.1 + + +
+
+ +
+ 通过一个键值对,创建一个uNode对象 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.uNode +
+ +
+ +
+
+ + + + + + + 参数列表 + + + + + + + + + + + +
参数名类型描述
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
 var node = new uNode({
+     type:'element',
+     tagName:'span',
+     attrs:{style:'font-size:14px;'}
+ }
+
+
+
+ +
+ + +
+
+ + + + + +
+
+

toHtml()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 当前节点对象,转换成html文本 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.uNode +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 返回转换后的html字符串 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 node.toHtml();
+
+
+
+ +
+ + +
+
+ +
+
+

toHtml(Boolean formatter)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 当前节点对象,转换成html文本 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.uNode +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ formatter + + Boolean + + 是否格式化返回值 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 返回转换后的html字符串 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 node.toHtml();
+
+
+
+ +
+ + +
+
+ +
+
+

innerHTML()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取节点的html内容 +
+ + + + + + +
    +
  • + 警告: 假如节点的type不是'element',或节点的标签名称不在dtd列表里,直接反悔当前节点 +
  • +
+ + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.uNode +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 返回节点的html内容 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 var htmlstr = node.innerHTML();
+
+
+
+ +
+ + +
+
+ +
+
+

innerHTML(String htmlstr)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 设置节点的html内容 +
+ + + + + + +
    +
  • + 警告: 假如节点的type不是'element',或节点的标签名称不在dtd列表里,直接反悔当前节点 +
  • +
+ + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.uNode +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ htmlstr + + String + + 传入要设置的html内容 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.uNode + + 返回节点本身 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 node.innerHTML('<span>text</span>');
+
+
+
+ +
+ + +
+
+ +
+
+

innerText()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取节点的纯文本内容 +
+ + + + + + +
    +
  • + 警告: 假如节点的type不是'element',或节点的标签名称不在dtd列表里,直接反悔当前节点 +
  • +
+ + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.uNode +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 返回节点的存文本内容 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 var textStr = node.innerText();
+
+
+
+ +
+ + +
+
+ +
+
+

innerText(String textStr)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取节点的纯文本内容 +
+ + + + + + +
    +
  • + 警告: 假如节点的type不是'element',或节点的标签名称不在dtd列表里,直接反悔当前节点 +
  • +
+ + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.uNode +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ textStr + + String + + 传入要设置的文本内容 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.uNode + + 返回节点本身 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 node.innerText('<span>text</span>');
+
+
+
+ +
+ + +
+
+ +
+
+

getData()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取当前对象的data属性 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.uNode +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ KeyValueMap + + 若节点的type值是elemenet,返回空字符串,否则返回节点的data属性 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 node.getData();
+
+
+
+ +
+ + +
+
+ +
+
+

firstChild()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取当前节点下的第一个子节点 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.uNode +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.uNode + + 返回第一个子节点 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 node.firstChild(); //返回第一个子节点
+
+
+
+ +
+ + +
+
+ +
+
+

lastChild()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取当前节点下的最后一个子节点 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.uNode +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.uNode + + 返回最后一个子节点 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 node.lastChild(); //返回最后一个子节点
+
+
+
+ +
+ + +
+
+ +
+
+

previousSibling()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取和当前节点有相同父亲节点的前一个节点 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.uNode +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.uNode + + 返回前一个节点 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 node.children[2].previousSibling(); //返回子节点node.children[1]
+
+
+
+ +
+ + +
+
+ +
+
+

nextSibling()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取和当前节点有相同父亲节点的后一个节点 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.uNode +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.uNode + + 返回后一个节点,找不到返回null +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 node.children[2].nextSibling(); //如果有,返回子节点node.children[3]
+
+
+
+ +
+ + +
+
+ +
+
+

replaceChild(UE.uNode target, UE.uNode source)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 用新的节点替换当前节点 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.uNode +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ target + + UE.uNode + + 要替换成该节点参数 +
+ source + + UE.uNode + + 要被替换掉的节点 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.uNode + + 返回替换之后的节点对象 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 node.replaceChild(newNode, childNode); //用newNode替换childNode,childNode是node的子节点
+
+
+
+ +
+ + +
+
+ +
+
+

appendChild(UE.uNode node)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 在节点的子节点列表最后位置插入一个节点 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.uNode +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + UE.uNode + + 要插入的节点 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.uNode + + 返回刚插入的子节点 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 node.appendChild( newNode ); //在node内插入子节点newNode
+
+
+
+ +
+ + +
+
+ +
+
+

insertBefore(UE.uNode target, UE.uNode source)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 在传入节点的前面插入一个节点 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.uNode +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ target + + UE.uNode + + 要插入的节点 +
+ source + + UE.uNode + + 在该参数节点前面插入 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.uNode + + 返回刚插入的子节点 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 node.parentNode.insertBefore(newNode, node); //在node节点后面插入newNode
+
+
+
+ +
+ + +
+
+ +
+
+

insertAfter(UE.uNode target, UE.uNode source)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 在传入节点的后面插入一个节点 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.uNode +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ target + + UE.uNode + + 要插入的节点 +
+ source + + UE.uNode + + 在该参数节点后面插入 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.uNode + + 返回刚插入的子节点 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 node.parentNode.insertAfter(newNode, node); //在node节点后面插入newNode
+
+
+
+ +
+ + +
+
+ +
+
+

removeChild(UE.uNode node, Boolean keepChildren)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 从当前节点的子节点列表中,移除节点 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.uNode +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + UE.uNode + + 要移除的节点引用 +
+ keepChildren + + Boolean + + 是否保留移除节点的子节点,若传入true,自动把移除节点的子节点插入到移除的位置 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ * + + 返回刚移除的子节点 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 node.removeChild(childNode,true); //在node的子节点列表中移除child节点,并且吧child的子节点插入到移除的位置
+
+
+
+ +
+ + +
+
+ +
+
+

getAttr(String attrName)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取当前节点所代表的元素属性,即获取attrs对象下的属性值 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.uNode +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ attrName + + String + + 要获取的属性名称 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ * + + 返回attrs对象下的属性值 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 node.getAttr('title');
+
+
+
+ +
+ + +
+
+ +
+
+

getAttr(String attrName, * attrVal)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 设置当前节点所代表的元素属性,即设置attrs对象下的属性值 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.uNode +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ attrName + + String + + 要设置的属性名称 +
+ attrVal + + * + + 要设置的属性值,类型视设置的属性而定 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ * + + 返回attrs对象下的属性值 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 node.setAttr('title','标题');
+
+
+
+ +
+ + +
+
+ +
+
+

getIndex()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取当前节点在父节点下的位置索引 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.uNode +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Number + + 返回索引数值,如果没有父节点,返回-1 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 node.getIndex();
+
+
+
+ +
+ + +
+
+ +
+
+

getNodeById(String id)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 在当前节点下,根据id查找节点 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.uNode +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ id + + String + + 要查找的id +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.uNode + + 返回找到的节点 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 node.getNodeById('textId');
+
+
+
+ +
+ + +
+
+ +
+
+

getNodeById(String tagNames)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 在当前节点下,根据元素名称查找节点列表 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.uNode +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ tagNames + + String + + 要查找的元素名称 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Array + + 返回找到的节点列表 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 node.getNodesByTagName('span');
+
+
+
+ +
+ + +
+
+ +
+
+

getStyle(String name)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 根据样式名称,获取节点的样式值 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.uNode +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ name + + String + + 要获取的样式名称 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 返回样式值 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 node.getStyle('font-size');
+
+
+
+ +
+ + +
+
+ +
+
+

setStyle(String name, String val)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 给节点设置样式 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.uNode +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ name + + String + + 要设置的的样式名称 +
+ val + + String + + 要设置的的样值 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 node.setStyle('font-size', '12px');
+
+
+
+ +
+ + +
+
+ +
+
+

traversal(Function fn)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 传入一个函数,递归遍历当前节点下的所有节点 +
+ + + + + +
+
+ 所属模块: UE +
+ +
+ 所属类: UE.uNode +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ fn + + Function + + 遍历到节点的时,传入节点作为参数,运行此函数 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 traversal(node, function(){
+     console.log(node.type);
+ });
+
+
+
+ +
+ + +
+
+ + +
+
+ + +
+
+ +
+ + +
+ +
+ + +
+ +
+ +
+ +
+
+

UE.dom

+
+ 模块 +
+
+ +
+ +
+ dom操作封装 +
+ + + + + +
+ +
+ +
+ + + + + + + + 类列表 + + + + + + + + + + + + + + + + + + + + + + +
类名描述
+ Range + + Range实现类,本类是UEditor底层核心类,统一w3cRange和ieRange之间的差异,包括接口和属性 +
+ Selection + + 选区集合 +
+
+ + +
+ +
+ + + + 模块成员详细描述(UE.dom) + +
+ + + + + + +
+
+

Range

+
+ +
+
+ +
+ +
+ Range实现类,本类是UEditor底层核心类,统一w3cRange和ieRange之间的差异,包括接口和属性 +
+ + + + + +
+
+ 所属模块: UE.dom +
+
+ +
+ +
+
+ + + + 属性列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
属性名类型静态描述
+ startContainer + + Node + + 否 + + 当前Range的开始边界的容器节点, 可以是一个元素节点或者是文本节点 +
+ startOffset + + Node + + 否 + + 当前Range的开始边界容器节点的偏移量, 如果是元素节点, + 该值就是childNodes中的第几个节点, 如果是文本节点就是文本内容的第几个字符 +
+ endContainer + + Node + + 否 + + 当前Range的结束边界的容器节点, 可以是一个元素节点或者是文本节点 +
+ endOffset + + Node + + 否 + + 当前Range的结束边界容器节点的偏移量, 如果是元素节点, + 该值就是childNodes中的第几个节点, 如果是文本节点就是文本内容的第几个字符 +
+ collapsed + + Boolean + + 否 + + 当前Range是否是闭合的 +
+ document + + Document + + 否 + + 当前Range所属的Document对象 +
+
+ + + + + + + 构造器列表 + + + + + + + + + + + + + + + +
方法签名描述
+ Range() + + 创建一个跟document绑定的空的Range实例 +
+
+ + + + + 方法列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
方法签名静态描述
+ cloneContents() + + 否 + + 克隆选中的内容到一个DocumentFragment里 +
+ deleteContents() + + 否 + + 删除当前选区范围中的所有内容 +
+ extractContents() + + 否 + + 将当前选区的内容提取到一个DocumentFragment里 +
+ setStart(Node node, int offset) + + 否 + + 设置Range的开始位置 +
+ setEnd(Node node, int offset) + + 否 + + 设置Range的结束位置 +
+ setStartAfter(Node node) + + 否 + + 将Range开始位置设置到node节点之后 +
+ setStartBefore(Node node) + + 否 + + 将Range开始位置设置到node节点之前 +
+ setEndAfter(Node node) + + 否 + + 将Range结束位置设置到node节点之后 +
+ setEndBefore(Node node) + + 否 + + 将Range结束位置设置到node节点之前 +
+ setStartAtFirst(Node node) + + 否 + + 设置Range的开始位置设置到node节点内的第一个节点处 +
+ setStartAtLast(Node node) + + 否 + + 设置Range的开始位置设置到node节点内的最后一个节点处 +
+ setEndAtFirst(Node node) + + 否 + + 设置Range的结束位置设置到node节点内的第一个节点处 +
+ setEndAtLast(Node node) + + 否 + + 设置Range的结束位置设置到node节点内的最后一个节点处 +
+ selectNode(Node node) + + 否 + + 选中一个节点, 并返回包含这个节点的range对象 +
+ selectNodeContents(Node node) + + 否 + + 选中给定节点内部的所有节点, 并返回包含这个节点内容的range对象 +
+ cloneRange() + + 否 + + clone当前Range对象 +
+ collapse() + + 否 + + 闭合当前选区,向尾部闭合 +
+ collapse(Boolean toStart) + + 否 + + 闭合当前选区,根据给定的toStart参数项决定是向尾部闭合还是向前闭合, + 如果toStart的值为true,则闭合到首部, 反之,则闭合到尾部 +
+ shrinkBoundary() + + 否 + + 调整range的开始位置和结束位置,使其"收缩"到最小的位置 +
+ getCommonAncestor() + + 否 + + 获取当前选区所包含的所有节点的公共祖先节点, + 返回的公共祖先节点一定不是range自身的容器节点, 但有可能是一个文本节点 +
+ getCommonAncestor(Boolean includeSelf) + + 否 + + 获取当前选区所包含的所有节点的公共祖先节点, 可以根据给定的参数 includeSelf 决定获取到 + 的公共祖先节点是否可以是当前选区的startContainer或endContainer节点, 如果 includeSelf + 的取值为true, 则返回的节点可以是自身的容器节点, 否则, 则不能是容器节点 +
+ getCommonAncestor(Boolean includeSelf, Boolean ignoreTextNode) + + 否 + + 获取当前选区所包含的所有节点的公共祖先节点, 可以根据给定的参数 includeSelf 决定获取到 + 的公共祖先节点是否可以是当前选区的startContainer或endContainer节点, 如果 includeSelf + 的取值为true, 则返回的节点可以是自身的容器节点, 否则, 则不能是容器节点; 同时可以根据 + ignoreTextNode 参数的取值决定是否忽略类型为文本节点的祖先节点。 +
+ trimBoundary() + + 否 + + 调整当前Range的开始和结束边界容器,如果是容器节点是文本节点,就调整到包含该文本节点的父节点上 +
+ trimBoundary(Boolean ignoreEnd) + + 否 + + 调整当前Range的开始和结束边界容器,如果是容器节点是文本节点,就调整到包含该文本节点的父节点上, + 可以根据 ignoreEnd 参数的值决定是否调整对结束边界的调整 +
+ txtToElmBoundary() + + 否 + + 如果选区在文本的边界上,就扩展选区到文本的父节点上, 如果当前选区是闭合的, 则什么也不做 +
+ txtToElmBoundary(Boolean ignoreCollapsed) + + 否 + + 如果选区在文本的边界上,就扩展选区到文本的父节点上, 如果当前选区是闭合的, 则根据参数项 + ignoreCollapsed 的值决定是否执行该调整 +
+ insertNode() + + 否 + + 在当前选区的开始位置后紧临着插入一个节点,新插入的节点会被该range包含 +
+ setCursor() + + 否 + + 闭合选区到当前选区的开始位置, 并且定位光标到闭合后的位置 +
+ setCursor(Boolean toEnd) + + 否 + + 闭合选区, 并且定位光标到闭合后的位置, 可以根据参数toEnd的值控制选区是向前闭合还是向后闭合 +
+ createBookmark(Boolean serialize) + + 否 + + 创建当前range的一个书签,记录下当前range的位置,方便当dom树改变时,还能找回原来的选区位置 +
+ moveToBookmark() + + 否 + + 调整当前range的边界到书签位置,并删除该书签对象所标记的位置内的节点 +
+ enlarge() + + 否 + + 调整range的边界,使其"放大"到最近的父节点 +
+ enlarge(Boolean toBlock) + + 否 + + 调整range的边界,使其"放大"到最近的父节点,根据参数 toBlock 的取值, 可以 + 要求扩大之后的父节点是block节点 +
+ adjustmentBoundary() + + 否 + + 调整Range的边界,使其"缩小"到最合适的位置 +
+ getClosedNode() + + 否 + + 获取当前选区中的首个自闭合的节点 +
+ select() + + 否 + + 选中当前选区 +
+ scrollToView(Window win) + + 否 + + 滚动到当前range开始的位置 +
+ scrollToView(Window win, Number offset) + + 否 + + 滚动到距离当前range开始位置 offset 的位置处 +
+ inFillChar() + + 否 + + 判断当前选区内容是否占位符 +
+ createAddress() + + 否 + + 保存 +
+ createAddress() + + 否 + + 保存 +
+ equals(Function doFn) + + 否 + + 判断给定的Range对象是否和当前Range对象表示的是同一个选区 +
+ traversal(Function doFn, Function filterFn) + + 否 + + 遍历range内的节点。 + 每当遍历一个节点时, 都会执行参数项 doFn 指定的函数, 该函数的接受当前遍历的节点 + 作为其参数。 + 可以通过参数项 filterFn 来指定一个过滤器, 只有符合该过滤器过滤规则的节点才会触 + 发doFn函数的执行 +
+
+ + +
+ +
+ + + + 类成员详细描述(Range) + +
+ + +
+
+

startContainer

+
+ 属性 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 当前Range的开始边界的容器节点, 可以是一个元素节点或者是文本节点 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + +
类型默认值描述
+ Node + + + 无 + + + 当前Range的开始边界的容器节点, 可以是一个元素节点或者是文本节点 +
+ + + +
+
+ +
+
+

startOffset

+
+ 属性 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 当前Range的开始边界容器节点的偏移量, 如果是元素节点, + 该值就是childNodes中的第几个节点, 如果是文本节点就是文本内容的第几个字符 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + +
类型默认值描述
+ Node + + + 无 + + + 当前Range的开始边界容器节点的偏移量, 如果是元素节点, + 该值就是childNodes中的第几个节点, 如果是文本节点就是文本内容的第几个字符 +
+ + + +
+
+ +
+
+

endContainer

+
+ 属性 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 当前Range的结束边界的容器节点, 可以是一个元素节点或者是文本节点 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + +
类型默认值描述
+ Node + + + 无 + + + 当前Range的结束边界的容器节点, 可以是一个元素节点或者是文本节点 +
+ + + +
+
+ +
+
+

endOffset

+
+ 属性 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 当前Range的结束边界容器节点的偏移量, 如果是元素节点, + 该值就是childNodes中的第几个节点, 如果是文本节点就是文本内容的第几个字符 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + +
类型默认值描述
+ Node + + + 无 + + + 当前Range的结束边界容器节点的偏移量, 如果是元素节点, + 该值就是childNodes中的第几个节点, 如果是文本节点就是文本内容的第几个字符 +
+ + + +
+
+ +
+
+

collapsed

+
+ 属性 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 当前Range是否是闭合的 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + +
类型默认值描述
+ Boolean + + + 无 + + + 当前Range是否是闭合的 +
+ + + +
+
+ +
+
+

document

+
+ 属性 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 当前Range所属的Document对象 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + +
类型默认值描述
+ Document + + + 无 + + + 当前Range所属的Document对象 +
+ + + +
+
+ + + + + + + + + +
+
+

Range()

+
+ 构造器 +
+ + + 1.2.6.1 + + +
+
+ +
+ 创建一个跟document绑定的空的Range实例 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+
+ + + + + + +
+
+ + + + + +
+
+

cloneContents()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 克隆选中的内容到一个DocumentFragment里 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ DocumentFragment | NULL + + 如果选区是空的将返回null, 否则, 返回包含所clone内容的DocumentFragment元素 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
1
+2
+3
+4
+5
+6
+7
 <!-- 被选中的内容 -->
+ <div>123</div><div>456</div>
+
+ <script>
+     //output: 2
+     console.log( range.cloneContents().childNodes.length );
+ </script>
+
+
+
+ +
+ + +
+
+ +
+
+

deleteContents()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 删除当前选区范围中的所有内容 +
+ + + + +
    +
  • + 提示: 执行完该操作后, 当前Range对象变成了闭合状态 +
  • +
+ +
    +
  • + 提示: 执行该操作会引起当前Range对象的其他属性的变化 +
  • +
+ + + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前操作的Range对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
 <body>
+     <!-- 选区开始 -->
+     <div></div>
+     <span></span>
+     <!-- 选区结束 -->
+ </body>
+
+ <script>
+     //output: 5
+     console.log( document.body.childNodes.length );
+
+     //执行删除选区内容操作
+     range.deleteContents();
+
+     //output: 2
+     console.log( document.body.childNodes.length );
+ </script>
+
+
+
+ +
+ + +
+
+ +
+
+

extractContents()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 将当前选区的内容提取到一个DocumentFragment里 +
+ + + + +
    +
  • + 提示: 执行该操作后, 选区将变成闭合状态 +
  • +
+ + + + + + + +
    +
  • + 警告: 执行该操作后, 原来选区所选中的内容将从dom树上剥离出来 +
  • +
+ + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ DocumentFragment + + 返回包含所提取内容的DocumentFragment对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
 <body>
+     <!-- 选区开始 -->
+     <div></div>
+     <span></span>
+     <!-- 选区结束 -->
+ </body>
+ <script>
+     //output: 5
+     console.log( document.body.childNodes.length );
+
+     //执行选区内容提取
+     var contents = range.extractContents();
+
+     //output: 2
+     console.log( document.body.childNodes.length );
+
+     //output: 3
+     console.log( contents.childNodes.length );
+
+ </script>
+
+
+
+ +
+ + +
+
+ +
+
+

setStart(Node node, int offset)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 设置Range的开始位置 +
+ + + + +
    +
  • + 提示: 如果容器节点是元素节点,那么offset指的是其子元素中索引为offset的元素, + 如果是文本节点,那么offset指的是其文本内容的第offset个字符 +
  • +
+ + + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 将被设为当前选区开始边界容器的节点对象 +
+ offset + + int + + 开始容器的偏移量 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
 <body>
+     <div id="test"></div>
+     <!-- 选区开始 -->
+     <span></span>
+     <a></a>
+     <!-- 选区结束 -->
+ </body>
+
+ <script>
+
+     //output: SPAN
+     console.log( range.startContainer.tagName );
+
+     range.setStart( document.getElementById( "test" ), 0 );
+
+     //output: DIV
+     console.log( range.startContainer.tagName );
+
+ </script>
+
+
+
+ +
+ + +
+
+ +
+
+

setEnd(Node node, int offset)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 设置Range的结束位置 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 将被设为当前选区结束边界容器的节点对象 +
+ offset + + int + + 结束容器的偏移量 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
 <body>
+     <!-- 选区开始 -->
+     <span></span>
+     <a></a>
+     <!-- 选区结束 -->
+     <div id="test"></div>
+ </body>
+
+ <script>
+
+     //output: A
+     console.log( range.endContainer.tagName );
+
+     range.setEnd( document.getElementById( "test" ), 0 );
+
+     //output: DIV
+     console.log( range.endContainer.tagName );
+
+ </script>
+
+
+
+ +
+ + +
+
+ +
+
+

setStartAfter(Node node)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 将Range开始位置设置到node节点之后 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 当前选区开始边界之前的节点 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
 <body>
+     <div id="test"></div>
+     <span></span>
+     <!-- 选区开始 -->
+     <a></a>
+     <!-- 选区结束 -->
+ </body>
+
+ <script>
+
+     //output: A
+     console.log( range.startContainer.tagName );
+
+     range.setStartAfter( document.getElementById( "test" ) );
+
+     //output: SPAN
+     console.log( range.startContainer.tagName );
+
+ </script>
+
+
+
+ +
+ + +
+
+ +
+
+

setStartBefore(Node node)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 将Range开始位置设置到node节点之前 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 新的选区开始位置在该节点之前 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
 <body>
+     <span></span>
+     <div id="test"></div>
+     <!-- 选区开始 -->
+     <a></a>
+     <!-- 选区结束 -->
+ </body>
+
+ <script>
+
+     //output: A
+     console.log( range.startContainer.tagName );
+
+     range.setStartBefore( document.getElementById( "test" ) );
+
+     //output: SPAN
+     console.log( range.startContainer.tagName );
+
+ </script>
+
+
+
+ +
+ + +
+
+ +
+
+

setEndAfter(Node node)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 将Range结束位置设置到node节点之后 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 目标节点 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
 <body>
+     <!-- 选区开始 -->
+     <a></a>
+     <!-- 选区结束 -->
+     <span></span>
+     <div id="test"></div>
+
+     <script>
+         //output: A
+         console.log( range.endContainer.tagName );
+
+         range.setEndAfter( document.getElementById( "test" ) );
+
+         //output: DIV
+         console.log( range.endContainer.tagName );
+     </script>
+ </body>
+
+
+
+ +
+ + +
+
+ +
+
+

setEndBefore(Node node)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 将Range结束位置设置到node节点之前 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 目标节点 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
 <body>
+     <!-- 选区开始 -->
+     <a></a>
+     <!-- 选区结束 -->
+     <span></span>
+     <div id="test"></div>
+
+     <script>
+         //output: A
+         console.log( range.endContainer.tagName );
+
+         range.setEndBefore( document.getElementById( "test" ) );
+
+         //output: SPAN
+         console.log( range.endContainer.tagName );
+     </script>
+ </body>
+
+
+
+ +
+ + +
+
+ +
+
+

setStartAtFirst(Node node)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 设置Range的开始位置设置到node节点内的第一个节点处 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 目标节点 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
 <body>
+     <div id="test">
+         <i></i>
+         <!-- 选区开始 -->
+         <a></a>
+         <!-- 选区结束 -->
+         <span></span>
+     </div>
+
+     <script>
+         //output: '<a></a>'
+         console.log( range.cloneContents() );
+
+         range.setStartAtFirst( document.getElementById("test") );
+
+         //output: '<i></i><a></a>'
+         console.log( range.cloneContents() );
+     </script>
+ </body>
+
+
+
+ +
+ + +
+
+ +
+
+

setStartAtLast(Node node)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 设置Range的开始位置设置到node节点内的最后一个节点处 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 目标节点 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
 <body>
+     <div id="test">
+         <i></i>
+         <!-- 选区开始 -->
+         <a></a>
+         <!-- 选区结束 -->
+         <span></span>
+     </div>
+
+     <script>
+         //output: <a></a>
+         console.log( range.cloneContents() );
+
+         range.setStartAtLast( document.body );
+
+         //选区已经闭合, 输出空字符串
+         //output: ''
+         console.log( range.cloneContents() );
+     </script>
+ </body>
+
+
+
+ +
+ + +
+
+ +
+
+

setEndAtFirst(Node node)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 设置Range的结束位置设置到node节点内的第一个节点处 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 目标节点 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
 <body>
+     <!-- 选区开始 -->
+     <a></a>
+     <!-- 选区结束 -->
+     <span></span>
+     <div id="test"></div>
+
+     <script>
+         //output: '<a></a>'
+         console.log( range.cloneContents() );
+
+         range.setEndAtFirst( document.getElementById("test") );
+
+         //output: '<a></a><div></div>'
+         console.log( range.cloneContents() );
+     </script>
+ </body>
+
+
+
+ +
+ + +
+
+ +
+
+

setEndAtLast(Node node)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 设置Range的结束位置设置到node节点内的最后一个节点处 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 目标节点 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
 <body>
+     <div id="test">
+         <!-- 选区开始 -->
+         <a></a>
+         <!-- 选区结束 -->
+         <span></span>
+     </div>
+
+     <script>
+         //output: '<a></a>'
+         console.log( range.cloneContents() );
+
+         range.setEndAtLast( document.getElementById("test") );
+
+         //output: '<a></a><span></span>'
+         console.log( range.cloneContents() );
+     </script>
+ </body>
+
+
+
+ +
+ + +
+
+ +
+
+

selectNode(Node node)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 选中一个节点, 并返回包含这个节点的range对象 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 需要选中的节点 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象, 但是选区已经改变, 包含了当前选择的节点对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
 <body>
+
+     <div id="test"></div>
+
+     <script>
+
+         range.selectNode( document.getElementById("test") );
+
+         //output: '<div id="test"></div>'
+         console.log( range.cloneContents() );
+
+     </script>
+ </body>
+
+
+
+ +
+ + +
+
+ +
+
+

selectNodeContents(Node node)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 选中给定节点内部的所有节点, 并返回包含这个节点内容的range对象 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 目标节点, 当前range将包含该节点内的所有节点 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象, 包含了当前选择的节点对象的所有子节点 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
 <body>
+
+     <div id="test">
+          <a></a>
+          <i></i>
+     </div>
+
+     <script>
+
+         range.selectNodeContents( document.getElementById("test") );
+
+         //output: '<a></a><i></i>'
+         console.log( range.cloneContents() );
+
+     </script>
+ </body>
+
+
+
+ +
+ + +
+
+ +
+
+

cloneRange()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ clone当前Range对象 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象的一个副本 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
 <body>
+
+     <div id="test">
+         <!-- 选区开始 -->
+         <a></a>
+         <i></i>
+         <!-- 选区结束 -->
+     </div>
+
+     <script>
+
+         var cloneRange = range.cloneRange();
+
+         //output: '<a></a><i></i>'
+         console.log( cloneRange.cloneContents() );
+
+     </script>
+ </body>
+
+
+
+ +
+ + +
+
+ +
+
+

collapse()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 闭合当前选区,向尾部闭合 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
 <body>
+
+     <div id="test">
+         <!-- 选区开始 -->
+         <a></a>
+         <i></i>
+         <!-- 选区结束 -->
+     </div>
+
+     <script>
+
+         //output: '<a></a><i></i>'
+         console.log( range.cloneContents() );
+         //output: 1
+         console.log( range.startOffset );
+
+         range.collapse();
+
+         //output: ''
+         console.log( range.cloneContents() );
+         //output: 3
+         console.log( range.startOffset );
+
+     </script>
+ </body>
+
+
+
+ +
+ + +
+
+ +
+
+

collapse(Boolean toStart)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 闭合当前选区,根据给定的toStart参数项决定是向尾部闭合还是向前闭合, + 如果toStart的值为true,则闭合到首部, 反之,则闭合到尾部 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ toStart + + Boolean + + 是否向前闭合选区 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
 <body>
+
+     <div id="test">
+         <!-- 选区开始 -->
+         <a></a>
+         <i></i>
+         <!-- 选区结束 -->
+     </div>
+
+     <script>
+
+         //output: '<a></a><i></i>'
+         console.log( range.cloneContents() );
+         //output: 1
+         console.log( range.startOffset );
+
+         range.collapse();
+
+         //output: ''
+         console.log( range.cloneContents() );
+         //output: 3
+         console.log( range.startOffset );
+
+     </script>
+ </body>
+
+
+
+ +
+ + +
+
+ +
+
+

shrinkBoundary()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 调整range的开始位置和结束位置,使其"收缩"到最小的位置 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
 <body>
+
+     <div id="test">
+         <!-- 选区开始 -->
+         <a></a>
+         <i></i>
+         <!-- 选区结束 -->
+     </div>
+
+     <script>
+
+         //output: '<a></a><i></i>'
+         console.log( range.cloneContents() );
+         //output: 1
+         console.log( range.startOffset );
+
+         range.collapse();
+
+         //output: ''
+         console.log( range.cloneContents() );
+         //output: 3
+         console.log( range.startOffset );
+
+     </script>
+ </body>
+
+
+
+ +
+ + +
+
+ +
+
+

getCommonAncestor()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取当前选区所包含的所有节点的公共祖先节点, + 返回的公共祖先节点一定不是range自身的容器节点, 但有可能是一个文本节点 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Node + + 当前range对象内所有节点的公共祖先节点 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
 <body>
+
+     <div id="test">
+         <!-- 选区开始 -->
+         <a></a>
+         <i></i>
+         <!-- 选区结束 -->
+     </div>
+
+     <script>
+
+         var ancestorNode = range.getCommonAncestor();
+
+         //output: 'DIV'
+         console.log( ancestorNode.tagName );
+
+     </script>
+
+ </body>
+
+
+
+ +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
 <body>
+
+     <div id="test">
+          <span>
+              <!-- 选区开始 -->
+              <a></a>
+          </span>
+          <span>
+              <i></i>
+              <!-- 选区结束 -->
+          </span>
+     </div>
+
+     <script>
+
+         var ancestorNode = range.getCommonAncestor();
+
+         //output: 'DIV'
+         console.log( ancestorNode.tagName );
+
+     </script>
+
+ </body>
+
+
+
+ +
+ + +
+
+ +
+
+

getCommonAncestor(Boolean includeSelf)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取当前选区所包含的所有节点的公共祖先节点, 可以根据给定的参数 includeSelf 决定获取到 + 的公共祖先节点是否可以是当前选区的startContainer或endContainer节点, 如果 includeSelf + 的取值为true, 则返回的节点可以是自身的容器节点, 否则, 则不能是容器节点 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ includeSelf + + Boolean + + 是否允许获取到的公共祖先节点是当前range对象的容器节点 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Node + + 当前range对象内所有节点的公共祖先节点 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
 <body>
+
+     <!-- 选区开始 -->
+     <div id="test">
+         <a></a>
+         <i></i>
+     </div>
+     <!-- 选区结束 -->
+
+     <script>
+
+         var ancestorNode = range.getCommonAncestor( true );
+
+         //output: 'DIV'
+         console.log( ancestorNode.tagName );
+
+         ancestorNode = range.getCommonAncestor( false );
+
+         //output: BODY
+         console.log( ancestorNode.tagName );
+
+     </script>
+
+ </body>
+
+
+
+ +
+ + +
+
+ +
+
+

getCommonAncestor(Boolean includeSelf, Boolean ignoreTextNode)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取当前选区所包含的所有节点的公共祖先节点, 可以根据给定的参数 includeSelf 决定获取到 + 的公共祖先节点是否可以是当前选区的startContainer或endContainer节点, 如果 includeSelf + 的取值为true, 则返回的节点可以是自身的容器节点, 否则, 则不能是容器节点; 同时可以根据 + ignoreTextNode 参数的取值决定是否忽略类型为文本节点的祖先节点。 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ includeSelf + + Boolean + + 是否允许获取到的公共祖先节点是当前range对象的容器节点 +
+ ignoreTextNode + + Boolean + + 获取祖先节点的过程中是否忽略类型为文本节点的祖先节点 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Node + + 当前range对象内所有节点的公共祖先节点 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
 <body>
+
+     <div id="test">
+         <span>
+             我是一个
+             <!-- 选区开始 -->
+             文本
+             <!-- 选区结束 -->
+             内容
+         </span>
+     </div>
+
+     <script>
+
+         var ancestorNode = range.getCommonAncestor( true, false );
+
+         //output: 3
+         console.log( ancestorNode.nodeType );
+         //output: SPAN
+         console.log( ancestorNode.parentNode.tagName );
+
+         ancestorNode = range.getCommonAncestor( true, true );
+
+         //output: 1
+         console.log( ancestorNode.nodeType );
+         //output: SPAN
+         console.log( ancestorNode.tagName );
+
+     </script>
+
+ </body>
+
+
+
+ +
+ + +
+
+ +
+
+

trimBoundary()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 调整当前Range的开始和结束边界容器,如果是容器节点是文本节点,就调整到包含该文本节点的父节点上 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
 <body>
+     <div>
+         你好
+         <!-- 选区开始 -->
+         我是一段文本, 我旁边的注释内容其实是不存在的,仅仅是为了描述一下选区的边界
+         <!-- 选区结束 -->
+         到这里文本结束了
+     </div>
+
+     <script>
+
+         //output: 3
+         console.log( range.startContainer.nodeType );
+         //output: 3
+         console.log( range.endContainer.nodeType );
+
+         range.trimBoundary();
+
+         //output: 1
+         console.log( range.startContainer.nodeType );
+         //output: 1
+         console.log( range.endContainer.nodeType );
+
+     </script>
+ </body>
+
+
+
+ +
+ + +
+
+ +
+
+

trimBoundary(Boolean ignoreEnd)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 调整当前Range的开始和结束边界容器,如果是容器节点是文本节点,就调整到包含该文本节点的父节点上, + 可以根据 ignoreEnd 参数的值决定是否调整对结束边界的调整 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ ignoreEnd + + Boolean + + 是否忽略对结束边界的调整 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
 <body>
+     <div>
+         你好
+         <!-- 选区开始 -->
+         我是一段文本, 我旁边的注释内容其实是不存在的,仅仅是为了描述一下选区的边界
+         <!-- 选区结束 -->
+         到这里文本结束了
+     </div>
+
+     <script>
+
+         //output: 3
+         console.log( range.startContainer.nodeType );
+         //output: 3
+         console.log( range.endContainer.nodeType );
+
+         range.trimBoundary( true );
+
+         //output: 1
+         console.log( range.startContainer.nodeType );
+         //output: 3
+         console.log( range.endContainer.nodeType );
+
+     </script>
+ </body>
+
+
+
+ +
+ + +
+
+ +
+
+

txtToElmBoundary()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 如果选区在文本的边界上,就扩展选区到文本的父节点上, 如果当前选区是闭合的, 则什么也不做 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
 <body>
+     <div>
+         <!-- 选区开始 -->
+         你好,我是一段文本, 我旁边的注释内容其实是不存在的,仅仅是为了描述一下选区的边界
+         <!-- 选区结束 -->
+         到这里文本结束了
+     </div>
+
+     <script>
+
+         //output: 3
+         console.log( range.startContainer.nodeType );
+         //output: 3
+         console.log( range.endContainer.nodeType );
+
+         range.txtToElmBoundary();
+
+         //output: 1
+         console.log( range.startContainer.nodeType );
+         //output: 3
+         console.log( range.endContainer.nodeType );
+
+     </script>
+ </body>
+
+
+
+ +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
 <body>
+     <div>
+         <!-- 选区开始 -->
+         你好,我是一段文本, 我旁边的注释内容其实是不存在的,仅仅是为了描述一下选区的边界
+         到这里文本结束了
+         <!-- 选区结束 -->
+     </div>
+
+     <script>
+
+         //output: 3
+         console.log( range.startContainer.nodeType );
+         //output: 3
+         console.log( range.endContainer.nodeType );
+
+         range.txtToElmBoundary();
+
+         //output: 1
+         console.log( range.startContainer.nodeType );
+         //output: 1
+         console.log( range.endContainer.nodeType );
+
+     </script>
+ </body>
+
+
+
+ +
+ + +
+
+ +
+
+

txtToElmBoundary(Boolean ignoreCollapsed)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 如果选区在文本的边界上,就扩展选区到文本的父节点上, 如果当前选区是闭合的, 则根据参数项 + ignoreCollapsed 的值决定是否执行该调整 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ ignoreCollapsed + + Boolean + + 是否忽略选区的闭合状态, 如果该参数取值为true, 则 + 不论选区是否闭合, 都会执行该操作, 反之, 则不会对闭合的选区执行该操作 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
 <body>
+     <div>
+         你好,我是一段文本, 我旁边的注释内容其实是不存在的,仅仅是为了描述一下选区的边界
+         <!-- 选区开始 --><!-- 选区结束 -->
+         到这里文本结束了
+     </div>
+
+     <script>
+
+         //output: 3
+         console.log( range.startContainer.nodeType );
+         //output: 3
+         console.log( range.endContainer.nodeType );
+
+         range.txtToElmBoundary( true );
+
+         //output: 1
+         console.log( range.startContainer.nodeType );
+         //output: 1
+         console.log( range.endContainer.nodeType );
+
+     </script>
+ </body>
+
+
+
+ +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
 <body>
+     <div>
+         你好,我是一段文本, 我旁边的注释内容其实是不存在的,仅仅是为了描述一下选区的边界
+         <!-- 选区开始 --><!-- 选区结束 -->
+         到这里文本结束了
+     </div>
+
+     <script>
+
+         //output: 3
+         console.log( range.startContainer.nodeType );
+         //output: 3
+         console.log( range.endContainer.nodeType );
+
+         range.txtToElmBoundary( false );
+
+         //output: 3
+         console.log( range.startContainer.nodeType );
+         //output: 3
+         console.log( range.endContainer.nodeType );
+
+     </script>
+ </body>
+
+
+
+ +
+ + +
+
+ +
+
+

insertNode()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 在当前选区的开始位置后紧临着插入一个节点,新插入的节点会被该range包含 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + +
参数名类型描述
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
 <body>
+
+     <div id="test">
+         <!-- 选区开始 -->
+         <span></span>
+         <i></i>
+         <!-- 选区结束 -->
+     </div>
+
+     <script>
+
+
+         var newNode = document.createElement('div');
+         newNode.id = 'ueditor';
+
+         //output: <span></span><i></i>
+         console.log( range.cloneContents() );
+
+         range.insertNode( newNode );
+
+         //output: <div id="ueditor"></div><span></span><i></i>
+         console.log( range.cloneContents() );
+
+     </script>
+
+ </body>
+
+
+
+ +
+ + +
+
+ +
+
+

setCursor()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 闭合选区到当前选区的开始位置, 并且定位光标到闭合后的位置 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象 +
+
+ + + + +
+
+ +
+
+

setCursor(Boolean toEnd)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 闭合选区, 并且定位光标到闭合后的位置, 可以根据参数toEnd的值控制选区是向前闭合还是向后闭合 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ toEnd + + Boolean + + 是否向后闭合, 如果为true, 则闭合选区时, 将向结束容器方向闭合, + 反之,则向开始容器方向闭合 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象 +
+
+ + + + +
+
+ +
+
+

createBookmark(Boolean serialize)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 创建当前range的一个书签,记录下当前range的位置,方便当dom树改变时,还能找回原来的选区位置 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ serialize + + Boolean + + 控制返回的标记位置是对当前位置的引用还是ID,如果该值为true,则 + 返回标记位置的ID, 反之则返回标记位置的引用 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ KeyValueMap + + 返回一个书签记录键值对, 其包含的key有: start => 开始标记的ID或者引用, + end => 结束标记的ID或引用, id => 当前标记的类型, 如果为true,则表示 + 返回的记录的类型为ID, 反之则为引用 +
+
+ + + + +
+
+ +
+
+

moveToBookmark()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 调整当前range的边界到书签位置,并删除该书签对象所标记的位置内的节点 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + 参数列表 + + + + + + + + + + + +
参数名类型描述
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象 +
+
+ + + + +
+
+ +
+
+

enlarge()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 调整range的边界,使其"放大"到最近的父节点 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
 <body>
+     <div>
+          <span>
+              <b>a<!-- 选区开始 -->b</b>
+              cdef
+              <!-- 选区结束 -->
+          </span>
+     </div>
+
+     <script>
+
+          range.enlarge();
+
+          //output: <span><b>ab</b>cdef</span>
+          console.log( enlarge.cloneContents() );
+
+     </script>
+ </body>
+
+
+
+ +
+ + +
+
+ +
+
+

enlarge(Boolean toBlock)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 调整range的边界,使其"放大"到最近的父节点,根据参数 toBlock 的取值, 可以 + 要求扩大之后的父节点是block节点 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ toBlock + + Boolean + + 是否要求扩大之后的父节点必须是block节点 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
 <body>
+     <div>
+          <span>
+              <b>a<!-- 选区开始 -->b</b>
+              cdef
+              <!-- 选区结束 -->
+          </span>
+     </div>
+
+     <script>
+
+          range.enlarge( true );
+
+          //output: <div><span><b>ab</b>cdef</span></div>
+          console.log( enlarge.cloneContents() );
+
+     </script>
+ </body>
+
+
+
+ +
+ + +
+
+ +
+
+

adjustmentBoundary()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 调整Range的边界,使其"缩小"到最合适的位置 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象 +
+
+ + + + +
+
+ +
+
+

getClosedNode()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取当前选区中的首个自闭合的节点 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Node | NULL + + 如果在当前选区中存在自闭合的节点, 则返回该节点, 否则返回NULL +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
 <body>
+     <div>
+         <!-- 选区开始 -->
+         <a></a>
+         <span><img></span>
+         <i></i>
+         <!-- 选区结束 -->
+     </div>
+
+     <script>
+
+         var node = range.getCloseNode();
+
+         //output: IMG
+         console.log( node.tagName );
+
+     </script>
+ </body>
+
+
+
+ +
+ + +
+
+ +
+
+

select()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 选中当前选区 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 返回当前Range对象 +
+
+ + + + +
+
+ +
+
+

scrollToView(Window win)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 滚动到当前range开始的位置 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ win + + Window + + 当前range对象所属的window对象 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前Range对象 +
+
+ + + + +
+
+ +
+
+

scrollToView(Window win, Number offset)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 滚动到距离当前range开始位置 offset 的位置处 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ win + + Window + + 当前range对象所属的window对象 +
+ offset + + Number + + 距离range开始位置处的偏移量, 如果为正数, 则向下偏移, 反之, 则向上偏移 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前Range对象 +
+
+ + + + +
+
+ +
+
+

inFillChar()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 判断当前选区内容是否占位符 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 如果是占位符返回true,否则返回false +
+
+ + + + +
+
+ +
+
+

createAddress()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 保存 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 返回开始和结束的位置 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
 <body>
+     <p>
+         aaaa
+         <em>
+             <!-- 选区开始 -->
+             bbbb
+             <!-- 选区结束 -->
+         </em>
+     </p>
+
+     <script>
+         //output: {startAddress:[0,1,0,0],endAddress:[0,1,0,4]}
+         console.log( range.createAddress() );
+     </script>
+ </body>
+
+
+
+ +
+ + +
+
+ +
+
+

createAddress()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 保存 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 返回开始和结束的位置 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
 <body>
+     <p>
+         aaaa
+         <em>
+             <!-- 选区开始 -->
+             bbbb
+             <!-- 选区结束 -->
+         </em>
+     </p>
+
+     <script>
+         var range = editor.selection.getRange();
+         range.moveToAddress({startAddress:[0,1,0,0],endAddress:[0,1,0,4]});
+         range.select();
+         //output: 'bbbb'
+         console.log(editor.selection.getText());
+     </script>
+ </body>
+
+
+
+ +
+ + +
+
+ +
+
+

equals(Function doFn)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 判断给定的Range对象是否和当前Range对象表示的是同一个选区 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ doFn + + Function + + 对每个遍历的节点要执行的方法, 该方法接受当前遍历的节点作为其参数 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 如果给定的Range对象与当前Range对象表示的是同一个选区, 则返回true, 否则返回false + equals : function(rng){ + for(var p in this){ + if(this.hasOwnProperty(p)){ + if(this[p] !== rng[p]) + return false + } + } + return true; + + }, + + /** + 遍历range内的节点。每当遍历一个节点时, 都会执行参数项 doFn 指定的函数, 该函数的接受当前遍历的节点 + 作为其参数。 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
 <body>
+
+     <!-- 选区开始 -->
+     <span></span>
+     <a></a>
+     <!-- 选区结束 -->
+ </body>
+
+ <script>
+
+     //output: <span></span><a></a>
+     console.log( range.cloneContents() );
+
+     range.traversal( function ( node ) {
+
+         if ( node.nodeType === 1 ) {
+             node.className = "test";
+         }
+
+     } );
+
+     //output: <span class="test"></span><a class="test"></a>
+     console.log( range.cloneContents() );
+
+ </script>
+
+
+
+ +
+ + +
+
+ +
+
+

traversal(Function doFn, Function filterFn)

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 遍历range内的节点。 + 每当遍历一个节点时, 都会执行参数项 doFn 指定的函数, 该函数的接受当前遍历的节点 + 作为其参数。 + 可以通过参数项 filterFn 来指定一个过滤器, 只有符合该过滤器过滤规则的节点才会触 + 发doFn函数的执行 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Range +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ doFn + + Function + + 对每个遍历的节点要执行的方法, 该方法接受当前遍历的节点作为其参数 +
+ filterFn + + Function + + 过滤器, 该函数接受当前遍历的节点作为参数, 如果该节点满足过滤 + 规则, 请返回true, 该节点会触发doFn, 否则, 请返回false, 则该节点不 + 会触发doFn。 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ UE.dom.Range + + 当前range对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
 <body>
+
+     <!-- 选区开始 -->
+     <span></span>
+     <a></a>
+     <!-- 选区结束 -->
+ </body>
+
+ <script>
+
+     //output: <span></span><a></a>
+     console.log( range.cloneContents() );
+
+     range.traversal( function ( node ) {
+
+         node.className = "test";
+
+     }, function ( node ) {
+          return node.nodeType === 1;
+     } );
+
+     //output: <span class="test"></span><a class="test"></a>
+     console.log( range.cloneContents() );
+
+ </script>
+
+
+
+ +
+ + +
+
+ + +
+
+ + +
+
+ +
+ +
+
+

Selection

+
+ +
+
+ +
+ +
+ 选区集合 +
+ + + + + +
+
+ 所属模块: UE.dom +
+
+ +
+ +
+
+ + + + + + + + + + 方法列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
方法签名静态描述
+ getNative() + + 否 + + 获取原生seleciton对象 +
+ getIERange() + + 否 + + 获得ieRange +
+ cache() + + 否 + + 缓存当前选区的range和选区的开始节点 +
+ getStartElementPath() + + 否 + + 获取选区开始位置的父节点到body +
+ clear() + + 否 + + 清空缓存 +
+ isFocus() + + 否 + + 编辑器是否得到了选区 +
+ getRange() + + 否 + + 获取选区对应的Range +
+ getStart() + + 否 + + 获取开始元素,用于状态反射 +
+ getText() + + 否 + + 得到选区中的文本 +
+ clearRange() + + 否 + + 清除选区 +
+
+ + +
+ +
+ + + + 类成员详细描述(Selection) + +
+ + + + + + + + + + + + + + +
+
+

getNative()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取原生seleciton对象 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Selection +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Object + + 获得selection对象 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.selection.getNative();
+
+
+
+ +
+ + +
+
+ +
+
+

getIERange()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获得ieRange +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Selection +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Object + + 返回ie原生的Range +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.selection.getIERange();
+
+
+
+ +
+ + +
+
+ +
+
+

cache()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 缓存当前选区的range和选区的开始节点 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Selection +
+ +
+ +
+ +
+ + + + + + + + +
+
+ +
+
+

getStartElementPath()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取选区开始位置的父节点到body +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Selection +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Array + + 返回父节点集合 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.selection.getStartElementPath();
+
+
+
+ +
+ + +
+
+ +
+
+

clear()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 清空缓存 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Selection +
+ +
+ +
+ +
+ + + + + + + + +
+
+ +
+
+

isFocus()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 编辑器是否得到了选区 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Selection +
+ +
+ +
+ +
+ + + + + + + + +
+
+ +
+
+

getRange()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取选区对应的Range +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Selection +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Object + + 得到Range对象 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.selection.getRange();
+
+
+
+ +
+ + +
+
+ +
+
+

getStart()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取开始元素,用于状态反射 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Selection +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Element + + 获得开始元素 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.selection.getStart();
+
+
+
+ +
+ + +
+
+ +
+
+

getText()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 得到选区中的文本 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Selection +
+ +
+ +
+ +
+ + + + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 选区中包含的文本 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.selection.getText();
+
+
+
+ +
+ + +
+
+ +
+
+

clearRange()

+
+ 方法 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 清除选区 +
+ + + + + +
+
+ 所属模块: UE.dom +
+ +
+ 所属类: UE.dom.Selection +
+ +
+ +
+ +
+ + + + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 editor.selection.clearRange();
+
+
+
+ +
+ + +
+
+ + +
+
+ + +
+
+ +
+ + +
+ +
+ + +
+ +
+ +
+ +
+
+

UE.ajax

+
+ 模块 +
+
+ +
+ +
+ 提供对ajax请求的支持 +
+ + + + + +
+ +
+ +
+ + + + + + 方法列表 + + + + + + + + + + + + + + + + + + + + + + + +
方法签名静态描述
+ request(URLString url, KeyValueMap ajaxOptions) + + 是 + + 根据给定的参数项,向指定的url发起一个ajax请求。 ajax请求完成后,会根据请求结果调用相应回调: 如果请求 + 成功, 则调用onsuccess回调, 失败则调用 onerror 回调 +
+ request(KeyValueMap ajaxOptions) + + 是 + + 根据给定的参数项发起一个ajax请求, 参数项里必须包含一个url地址。 ajax请求完成后,会根据请求结果调用相应回调: 如果请求 + 成功, 则调用onsuccess回调, 失败则调用 onerror 回调。 +
+
+ + + + +
+ +
+ + + + 模块成员详细描述(UE.ajax) + +
+ + + + + +
+
+

request(URLString url, KeyValueMap ajaxOptions)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 根据给定的参数项,向指定的url发起一个ajax请求。 ajax请求完成后,会根据请求结果调用相应回调: 如果请求 + 成功, 则调用onsuccess回调, 失败则调用 onerror 回调 +
+ + + + + +
+
+ 所属模块: UE.ajax +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ url + + URLString + + ajax请求的url地址 +
+ ajaxOptions + + KeyValueMap + + ajax请求选项的键值对,支持的选项如下: +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
 //向sayhello.php发起一个异步的Ajax GET请求, 请求超时时间为10s, 请求完成后执行相应的回调。
+ UE.ajax.requeset( 'sayhello.php', {
+
+     //请求方法。可选值: 'GET', 'POST',默认值是'POST'
+     method: 'GET',
+
+     //超时时间。 默认为5000, 单位是ms
+     timeout: 10000,
+
+     //是否是异步请求。 true为异步请求, false为同步请求
+     async: true,
+
+     //请求携带的数据。如果请求为GET请求, data会经过stringify后附加到请求url之后。
+     data: {
+         name: 'ueditor'
+     },
+
+     //请求成功后的回调, 该回调接受当前的XMLHttpRequest对象作为参数。
+     onsuccess: function ( xhr ) {
+         console.log( xhr.responseText );
+     },
+
+     //请求失败或者超时后的回调。
+     onerror: function ( xhr ) {
+          alert( 'Ajax请求失败' );
+     }
+
+ } );
+
+
+
+ +
+ + +
+
+
+

request(KeyValueMap ajaxOptions)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 根据给定的参数项发起一个ajax请求, 参数项里必须包含一个url地址。 ajax请求完成后,会根据请求结果调用相应回调: 如果请求 + 成功, 则调用onsuccess回调, 失败则调用 onerror 回调。 +
+ + + + + + +
    +
  • + 警告: 如果在参数项里未提供一个key为“url”的地址值,则该请求将直接退出。 +
  • +
+ + + + +
+
+ 所属模块: UE.ajax +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ ajaxOptions + + KeyValueMap + + ajax请求选项的键值对,支持的选项如下: +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
+6
+7
 //向sayhello.php发起一个异步的Ajax POST请求, 请求超时时间为5s, 请求完成后不执行任何回调。
+ UE.ajax.requeset( 'sayhello.php', {
+
+     //请求的地址, 该项是必须的。
+     url: 'sayhello.php'
+
+ } );
+
+
+
+ +
+ + +
+
+ + + +
+ +
+ + +
+ +
+ +
+ +
+
+

UE.browser

+
+ 模块 +
+
+ +
+ +
+ 提供浏览器检测的模块 +
+ + + + + +
+ +
+ +
+ + + + 属性列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
属性名类型静态描述
+ ie + + boolean + + 是 + + 检测当前浏览器是否为IE +
+ opera + + boolean + + 是 + + 检测当前浏览器是否为Opera +
+ webkit + + boolean + + 是 + + 检测当前浏览器是否是webkit内核的浏览器 +
+ mac + + boolean + + 是 + + 检测当前浏览器是否是运行在mac平台下 +
+ quirks + + boolean + + 是 + + 检测当前浏览器是否处于“怪异模式”下 +
+ gecko + + boolean + + 是 + + 检测当前浏览器内核是否是gecko内核 +
+ ie9Compat + + boolean + + 是 + + 检测浏览器模式是否为 IE9 兼容模式 +
+ ie8 + + boolean + + 是 + + 检测浏览器是否是IE8浏览器 +
+ ie8Compat + + boolean + + 是 + + 检测浏览器模式是否为 IE8 兼容模式 +
+ ie7Compat + + boolean + + 是 + + 检测浏览器模式是否为 IE7 兼容模式 +
+ ie6Compat + + boolean + + 是 + + 检测浏览器模式是否为 IE6 模式 或者怪异模式 +
+ chrome + + Number + + 是 + + 检测当前浏览器是否为Chrome, 如果是,则返回Chrome的大版本号 +
+ safari + + Number + + 是 + + 检测当前浏览器是否为Safari, 如果是,则返回Safari的大版本号 +
+ version + + Number + + 是 + + 检测当前浏览器版本号 +
+ isCompatible + + boolean + + 是 + + 检测当前浏览器是否能够与UEditor良好兼容 +
+
+ + + + + + +
+ +
+ + + + 模块成员详细描述(UE.browser) + +
+ +
+
+

ie

+
+ 属性 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检测当前浏览器是否为IE +
+ + + + + +
+
+ 所属模块: UE.browser +
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + +
类型默认值描述
+ boolean + + + 无 + + + 检测当前浏览器是否为IE +
+ + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 if ( UE.browser.ie ) {
+     console.log( '当前浏览器是IE' );
+ }
+
+
+
+ +
+ + + +
+
+
+

opera

+
+ 属性 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检测当前浏览器是否为Opera +
+ + + + + +
+
+ 所属模块: UE.browser +
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + +
类型默认值描述
+ boolean + + + 无 + + + 检测当前浏览器是否为Opera +
+ + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 if ( UE.browser.opera ) {
+     console.log( '当前浏览器是Opera' );
+ }
+
+
+
+ +
+ + + +
+
+
+

webkit

+
+ 属性 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检测当前浏览器是否是webkit内核的浏览器 +
+ + + + + +
+
+ 所属模块: UE.browser +
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + +
类型默认值描述
+ boolean + + + 无 + + + 检测当前浏览器是否是webkit内核的浏览器 +
+ + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 if ( UE.browser.webkit ) {
+     console.log( '当前浏览器是webkit内核浏览器' );
+ }
+
+
+
+ +
+ + + +
+
+
+

mac

+
+ 属性 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检测当前浏览器是否是运行在mac平台下 +
+ + + + + +
+
+ 所属模块: UE.browser +
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + +
类型默认值描述
+ boolean + + + 无 + + + 检测当前浏览器是否是运行在mac平台下 +
+ + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 if ( UE.browser.mac ) {
+     console.log( '当前浏览器运行在mac平台下' );
+ }
+
+
+
+ +
+ + + +
+
+
+

quirks

+
+ 属性 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检测当前浏览器是否处于“怪异模式”下 +
+ + + + + +
+
+ 所属模块: UE.browser +
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + +
类型默认值描述
+ boolean + + + 无 + + + 检测当前浏览器是否处于“怪异模式”下 +
+ + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 if ( UE.browser.quirks ) {
+     console.log( '当前浏览器运行处于“怪异模式”' );
+ }
+
+
+
+ +
+ + + +
+
+
+

gecko

+
+ 属性 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检测当前浏览器内核是否是gecko内核 +
+ + + + + +
+
+ 所属模块: UE.browser +
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + +
类型默认值描述
+ boolean + + + 无 + + + 检测当前浏览器内核是否是gecko内核 +
+ + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 if ( UE.browser.gecko ) {
+     console.log( '当前浏览器内核是gecko内核' );
+ }
+
+
+
+ +
+ + + +
+
+
+

ie9Compat

+
+ 属性 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检测浏览器模式是否为 IE9 兼容模式 +
+ + + + + + +
    +
  • + 警告: 如果浏览器不是IE, 则该值为undefined +
  • +
+ + + + +
+
+ 所属模块: UE.browser +
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + +
类型默认值描述
+ boolean + + + 无 + + + 检测浏览器模式是否为 IE9 兼容模式 +
+ + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 if ( UE.browser.ie9Compat ) {
+     console.log( '当前浏览器运行在IE9兼容模式下' );
+ }
+
+
+
+ +
+ + + +
+
+
+

ie8

+
+ 属性 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检测浏览器是否是IE8浏览器 +
+ + + + + + +
    +
  • + 警告: 如果浏览器不是IE, 则该值为undefined +
  • +
+ + + + +
+
+ 所属模块: UE.browser +
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + +
类型默认值描述
+ boolean + + + 无 + + + 检测浏览器是否是IE8浏览器 +
+ + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 if ( UE.browser.ie8 ) {
+     console.log( '当前浏览器是IE8浏览器' );
+ }
+
+
+
+ +
+ + + +
+
+
+

ie8Compat

+
+ 属性 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检测浏览器模式是否为 IE8 兼容模式 +
+ + + + + + +
    +
  • + 警告: 如果浏览器不是IE, 则该值为undefined +
  • +
+ + + + +
+
+ 所属模块: UE.browser +
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + +
类型默认值描述
+ boolean + + + 无 + + + 检测浏览器模式是否为 IE8 兼容模式 +
+ + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 if ( UE.browser.ie8Compat ) {
+     console.log( '当前浏览器运行在IE8兼容模式下' );
+ }
+
+
+
+ +
+ + + +
+
+
+

ie7Compat

+
+ 属性 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检测浏览器模式是否为 IE7 兼容模式 +
+ + + + + + +
    +
  • + 警告: 如果浏览器不是IE, 则该值为undefined +
  • +
+ + + + +
+
+ 所属模块: UE.browser +
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + +
类型默认值描述
+ boolean + + + 无 + + + 检测浏览器模式是否为 IE7 兼容模式 +
+ + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 if ( UE.browser.ie7Compat ) {
+     console.log( '当前浏览器运行在IE7兼容模式下' );
+ }
+
+
+
+ +
+ + + +
+
+
+

ie6Compat

+
+ 属性 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检测浏览器模式是否为 IE6 模式 或者怪异模式 +
+ + + + + + +
    +
  • + 警告: 如果浏览器不是IE, 则该值为undefined +
  • +
+ + + + +
+
+ 所属模块: UE.browser +
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + +
类型默认值描述
+ boolean + + + 无 + + + 检测浏览器模式是否为 IE6 模式 或者怪异模式 +
+ + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 if ( UE.browser.ie6Compat ) {
+     console.log( '当前浏览器运行在IE6模式或者怪异模式下' );
+ }
+
+
+
+ +
+ + + +
+
+
+

chrome

+
+ 属性 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检测当前浏览器是否为Chrome, 如果是,则返回Chrome的大版本号 +
+ + + + + + +
    +
  • + 警告: 如果浏览器不是chrome, 则该值为undefined +
  • +
+ + + + +
+
+ 所属模块: UE.browser +
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + +
类型默认值描述
+ Number + + + 无 + + + 检测当前浏览器是否为Chrome, 如果是,则返回Chrome的大版本号 +
+ + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 if ( UE.browser.chrome ) {
+     console.log( '当前浏览器是Chrome' );
+ }
+
+
+
+ +
+ + + +
+
+
+

safari

+
+ 属性 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检测当前浏览器是否为Safari, 如果是,则返回Safari的大版本号 +
+ + + + + + +
    +
  • + 警告: 如果浏览器不是safari, 则该值为undefined +
  • +
+ + + + +
+
+ 所属模块: UE.browser +
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + +
类型默认值描述
+ Number + + + 无 + + + 检测当前浏览器是否为Safari, 如果是,则返回Safari的大版本号 +
+ + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 if ( UE.browser.safari ) {
+     console.log( '当前浏览器是Safari' );
+ }
+
+
+
+ +
+ + + +
+
+
+

version

+
+ 属性 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检测当前浏览器版本号 +
+ + + + +
    +
  • + 提示:
      +
    • IE系列返回值为5,6,7,8,9,10等
    • +
    • gecko系列会返回10900,158900等
    • +
    • webkit系列会返回其build号 (如 522等)
    • +
    +
  • +
+ + + + + + +
+
+ 所属模块: UE.browser +
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + +
类型默认值描述
+ Number + + + 无 + + + 检测当前浏览器版本号 +
+ + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 console.log( '当前浏览器版本号是: ' + UE.browser.version );
+
+
+
+ +
+ + + +
+
+
+

isCompatible

+
+ 属性 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检测当前浏览器是否能够与UEditor良好兼容 +
+ + + + + +
+
+ 所属模块: UE.browser +
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + +
类型默认值描述
+ boolean + + + 无 + + + 检测当前浏览器是否能够与UEditor良好兼容 +
+ + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 if ( UE.browser.isCompatible ) {
+     console.log( '浏览器与UEditor能够良好兼容' );
+ }
+
+
+
+ +
+ + + +
+
+ + + + + + + +
+ +
+ + +
+ +
+ +
+ +
+
+

UE.dom.domUtils

+
+ 模块 +
+
+ +
+ +
+ Dom操作工具包 +
+ + + + + +
+ +
+ +
+ + + + + + 方法列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
方法签名静态描述
+ getPosition(Node nodeA, Node nodeB) + + 是 + + 获取节点A相对于节点B的位置关系 +
+ getNodeIndex(Node node) + + 是 + + 检测节点node在父节点中的索引位置 +
+ getNodeIndex(Node node, Boolean ignoreTextNode) + + 是 + + 检测节点node在父节点中的索引位置, 根据给定的mergeTextNode参数决定是否要合并多个连续的文本节点为一个节点 +
+ inDoc(Node node, DomDocument doc) + + 是 + + 检测节点node是否在给定doc的树上,实质上是检测该节点是否在给定的dom树上 +
+ findParent(Node node, Function filterFn) + + 是 + + 根据给定的过滤规则filterFn, 查找符合该过滤规则的node节点的祖先节点, + 查找的过程中不包含自身节点。 +
+ findParent(Node node, Function filterFn, Boolean includeSelf) + + 是 + + 根据给定的过滤规则filterFn, 查找符合该过滤规则的node节点的祖先节点, + 查找的过程中根据includeSelf的值决定是否包含自身节点。 +
+ findParentByTagName(Node node, Array tagNames) + + 是 + + 查找node的节点名为tagName的祖先节点, 查找过程中不包含node节点自身 +
+ findParentByTagName(Node node, Array tagNames, Boolean includeSelf) + + 是 + + 查找node的节点名为tagName的祖先节点, 查找过程中根据includeSelf的值决定是否包含node节点自身 +
+ findParentByTagName(Node node, Array tagNames, Boolean includeSelf, Function excludeFn) + + 是 + + 查找node的节点名为tagName的祖先节点,并且该祖先节点不满足excludeFn过滤器的过滤要求, + 查找过程中根据includeSelf的值决定是否包含node节点自身, +
+ insertAfter(Node node, Node newNode) + + 是 + + 在节点node后面插入新节点newNode +
+ remove(Node node) + + 是 + + 删除节点node及其下属的所有节点 +
+ remove(Node node, Boolean keepChildren) + + 是 + + 删除节点node,并根据keepChildren的值决定是否保留子节点 +
+ isBookmarkNode(Node node) + + 是 + + 检测节点node是否属是UEditor定义的bookmark节点 +
+ getWindow(Node node) + + 是 + + 获取节点node所属的window对象 +
+ getCommonAncestor(Node nodeA, Node nodeB) + + 是 + + 获取离nodeA与nodeB最近的公共的祖先节点 +
+ split(Node textNode, int offset) + + 是 + + 将一个文本节点textNode拆分成两个文本节点,offset指定拆分位置 +
+ isWhitespace(Node node) + + 是 + + 检测文本节点textNode是否为空节点(包括空格、换行、占位符等字符) +
+ getXY(Node element) + + 是 + + 获取元素element相对于viewport的位置坐标 +
+ on(Node element, String type, Function handler) + + 是 + + 为元素element绑定原生DOM事件,type为事件类型,handler为处理函数 +
+ on(Node element, Array type, Function handler) + + 是 + + 为元素element绑定原生DOM事件,type为事件类型,handler为处理函数 +
+ un(Node element, String type, Function handler) + + 是 + + 解除DOM事件绑定 +
+ un(Node element, Array type, Function handler) + + 是 + + 解除DOM事件绑定 +
+ isSameElement(Node nodeA, Node nodeB) + + 是 + + 比较节点nodeA与节点nodeB是否具有相同的标签名、属性名以及属性值 +
+ isSameStyle(Node nodeA, Node nodeB) + + 是 + + 判断节点nodeA与节点nodeB的元素的style属性是否一致 +
+ isBlockElm(Node node) + + 是 + + 检查节点node是否为block元素 +
+ isBody(Element node) + + 是 + + 检测node节点是否为body节点 +
+ trimWhiteTextNode(Element node) + + 是 + + 删除node节点下首尾两端的空白文本子节点 +
+ mergeToParent(Element node) + + 是 + + 将节点node提取到父节点上 +
+ mergeSibling(Element node) + + 是 + + 合并节点node的左右兄弟节点 +
+ mergeSibling(Element node, Boolean ignorePre) + + 是 + + 合并节点node的左右兄弟节点, 可以根据给定的条件选择是否忽略合并左节点。 +
+ mergeSibling(Element node, Boolean ignorePre, Boolean ignoreNext) + + 是 + + 合并节点node的左右兄弟节点,可以根据给定的条件选择是否忽略合并左右节点。 +
+ unSelectable(Element node) + + 是 + + 设置节点node及其子节点不会被选中 +
+ removeAttributes(String attrNames) + + 是 + + 删除节点node上的指定属性名称的属性 +
+ removeAttributes(Array attrNames) + + 是 + + 删除节点node上的指定属性名称的属性 +
+ createElement(DomDocument doc, String tagName, KeyValueMap attrs) + + 是 + + 在doc下创建一个标签名为tag,属性为attrs的元素 +
+ setAttributes(Element node, KeyValueMap attrs) + + 是 + + 为节点node添加属性attrs,attrs为属性键值对 +
+ getComputedStyle(Element element, String styleName) + + 是 + + 获取元素element经过计算后的样式值 +
+ removeClasses(Element ele, String classNames) + + 是 + + 删除元素element指定的className +
+ removeClasses(Element ele, Array classNames) + + 是 + + 删除元素element指定的className +
+ addClass(Node ele, String classNames) + + 是 + + 给元素element添加className +
+ addClass(Node ele, Array classNames) + + 是 + + 给元素element添加className +
+ hasClass(Node ele, String classNames) + + 是 + + 判断元素element是否包含给定的样式类名className +
+ hasClass(Node ele, Array classNames) + + 是 + + 判断元素element是否包含给定的样式类名className +
+ preventDefault(Event evt) + + 是 + + 阻止事件默认行为 +
+ removeStyle(Element element, String styleName) + + 是 + + 删除元素element指定的样式 +
+ getStyle(Element element, String styleName) + + 是 + + 获取元素element的style属性的指定值 +
+ setStyle(Element element, String styleName, String styleValue) + + 是 + + 为元素element设置样式属性值 +
+ setStyles(Element element, KeyValueMap styles) + + 是 + + 为元素element设置多个样式属性值 +
+ removeDirtyAttr() + + 是 + + 删除_moz_dirty属性 +
+ getChildCount(Element node) + + 是 + + 获取子节点的数量 +
+ getChildCount(Element node, Function fn) + + 是 + + 根据给定的过滤规则, 获取符合条件的子节点的数量 +
+ isEmptyNode(Node node) + + 是 + + 判断给定节点是否为空节点 +
+ clearSelectedArr(Array nodes) + + 是 + + 清空给定节点所有的className +
+ scrollToView(Node node, window win, Number offsetTop) + + 是 + + 将显示区域滚动到指定节点的位置 +
+ isBr(Node node) + + 是 + + 判断给定节点是否为br +
+ isFillChar(Node node, Boolean isInStart) + + 是 + + 判断给定的节点是否是一个“填充”节点 +
+ isEmptyBlock(Element node) + + 是 + + 判断给定的元素是否是一个空元素 +
+ isEmptyBlock(Element node, RegExp reg) + + 是 + + 根据指定的判断规则判断给定的元素是否是一个空元素 +
+ setViewportOffset(Element element, KeyValueMap offset) + + 是 + + 移动元素使得该元素的位置移动指定的偏移量的距离 +
+ fillNode(DomDocument doc, Node node) + + 是 + + 用“填充字符”填充节点 +
+ moveChild(Node src, Node tag) + + 是 + + 把节点src的所有子节点追加到另一个节点tag上去 +
+ moveChild(Node src, Node tag, Boolean dir) + + 是 + + 把节点src的所有子节点移动到另一个节点tag上去, 可以通过dir参数控制附加的行为是“追加”还是“插入顶部” +
+ hasNoAttributes(Node node) + + 是 + + 判断节点的标签上是否不存在任何属性 +
+ isCustomeNode(Node node) + + 是 + + 检测节点是否是UEditor所使用的辅助节点 +
+ isTagNode(Node node, String tagName) + + 是 + + 检测节点的标签是否是给定的标签 +
+ filterNodeList(Array nodeList, Function fn) + + 是 + + 给定一个节点数组,在通过指定的过滤器过滤后, 获取其中满足过滤条件的第一个节点 +
+ filterNodeList(Array nodeList, String tagNames) + + 是 + + 给定一个节点数组nodeList和一组标签名tagNames, 获取其中能够匹配标签名的节点集合中的第一个节点 +
+ filterNodeList(Array nodeList, Function fn, Boolean forAll) + + 是 + + 给定一个节点数组,在通过指定的过滤器过滤后, 如果参数forAll为true, 则会返回所有满足过滤 + 条件的节点集合, 否则, 返回满足条件的节点集合中的第一个节点 +
+
+ + + + +
+ +
+ + + + 模块成员详细描述(UE.dom.domUtils) + +
+ + + + + +
+
+

getPosition(Node nodeA, Node nodeB)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取节点A相对于节点B的位置关系 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ nodeA + + Node + + 需要查询位置关系的节点A +
+ nodeB + + Node + + 需要查询位置关系的节点B +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Number + + 节点A与节点B的关系 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
 //output: 20
+ var position = UE.dom.domUtils.getPosition( document.documentElement, document.body );
+
+ switch ( position ) {
+
+      case 0:
+          console.log('元素相同');
+          break;
+      case 1:
+          console.log('两个节点在不同的文档中');
+          break;
+      case 2:
+          console.log('节点A在节点B之后');
+          break;
+      case 4;
+          console.log('节点A在节点B之前');
+          break;
+      case 8:
+          console.log('节点A被节点B包含');
+          break;
+      case 10:
+          console.log('节点A被节点B包含且节点A在节点B之后');
+          break;
+      case 16:
+          console.log('节点A包含节点B');
+          break;
+      case 20:
+          console.log('节点A包含节点B且节点A在节点B之前');
+          break;
+
+ }
+
+
+
+ +
+ + +
+
+
+

getNodeIndex(Node node)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检测节点node在父节点中的索引位置 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 需要检测的节点对象 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Number + + 该节点在父节点中的位置 +
+
+ + + + +
+
+
+

getNodeIndex(Node node, Boolean ignoreTextNode)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检测节点node在父节点中的索引位置, 根据给定的mergeTextNode参数决定是否要合并多个连续的文本节点为一个节点 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 需要检测的节点对象 +
+ ignoreTextNode + + Boolean + + 是否忽略文本节点 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Number + + 该节点在父节点中的位置 +
+
+ + + + +
+
+
+

inDoc(Node node, DomDocument doc)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检测节点node是否在给定doc的树上,实质上是检测该节点是否在给定的dom树上 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 需要检测的节点对象 +
+ doc + + DomDocument + + 需要检测的document对象 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 该节点node是否在给定的document的dom树上 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
+6
+7
+8
+9
 var node = document.createElement("div");
+
+ //output: false
+ console.log( UE.do.domUtils.inDoc( node, document ) );
+
+ document.body.appendChild( node );
+
+ //output: true
+ console.log( UE.do.domUtils.inDoc( node, document ) );
+
+
+
+ +
+ + +
+
+
+

findParent(Node node, Function filterFn)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 根据给定的过滤规则filterFn, 查找符合该过滤规则的node节点的祖先节点, + 查找的过程中不包含自身节点。 +
+ + + + +
    +
  • + 提示: 自定义的过滤方法filterFn接受一个Node对象作为参数, 该对象代表当前执行检测的祖先节点。 如果该 + 节点满足过滤条件, 则要求返回true, 这时将直接返回该节点作为findParent()的结果, 否则, 请返回false。 +
  • +
+ + + + + + + +
    +
  • + 警告: 查找的终点是到body节点为止 +
  • +
+ + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 需要查找的节点 +
+ filterFn + + Function + + 自定义的过滤方法。 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Node | Null + + 如果找到符合过滤条件的节点, 就返回该节点, 否则返回NULL +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
+6
+7
+8
+9
 var filterNode = UE.dom.domUtils.findParent( document.body.firstChild, function ( node ) {
+
+     //由于查找的终点是body节点, 所以永远也不会匹配当前过滤器的条件, 即这里永远会返回false
+     return node.tagName === "HTML";
+
+ } );
+
+ //output: true
+ console.log( filterNode === null );
+
+
+
+ +
+ + +
+
+
+

findParent(Node node, Function filterFn, Boolean includeSelf)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 根据给定的过滤规则filterFn, 查找符合该过滤规则的node节点的祖先节点, + 查找的过程中根据includeSelf的值决定是否包含自身节点。 +
+ + + + +
    +
  • + 提示: 自定义的过滤方法filterFn接受一个Node对象作为参数, 该对象代表当前执行检测的祖先节点。 如果该 + 节点满足过滤条件, 则要求返回true, 这时将直接返回该节点作为findParent()的结果, 否则, 请返回false。 +
  • +
+ +
    +
  • + 提示: 如果includeSelf为true, 则过滤器第一次执行时的参数会是节点本身。 + 反之, 过滤器第一次执行时的参数将是该节点的父节点。 +
  • +
+ + + + + + + +
    +
  • + 警告: 查找的终点是到body节点为止 +
  • +
+ + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 需要查找的节点 +
+ filterFn + + Function + + 自定义的过滤方法。 +
+ includeSelf + + Boolean + + 查找过程是否包含自身 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Node | Null + + 如果找到符合过滤条件的节点, 就返回该节点, 否则返回NULL +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
 <body>
+
+      <div id="test">
+      </div>
+
+      <script type="text/javascript">
+
+          //output: DIV, BODY
+          var filterNode = UE.dom.domUtils.findParent( document.getElementById( "test" ), function ( node ) {
+
+              console.log( node.tagName );
+              return false;
+
+          }, true );
+
+      </script>
+ </body>
+
+
+
+ +
+ + +
+
+
+

findParentByTagName(Node node, Array tagNames)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 查找node的节点名为tagName的祖先节点, 查找过程中不包含node节点自身 +
+ + + + + + +
    +
  • + 警告: 查找的终点是到body节点为止 +
  • +
+ + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 需要查找的节点对象 +
+ tagNames + + Array + + 需要查找的父节点的名称数组 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Node | NULL + + 如果找到符合条件的节点, 则返回该节点, 否则返回NULL +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 var node = UE.dom.domUtils.findParentByTagName( document.getElementsByTagName("div")[0], [ "BODY" ] );
+ //output: BODY
+ console.log( node.tagName );
+
+
+
+ +
+ + +
+
+
+

findParentByTagName(Node node, Array tagNames, Boolean includeSelf)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 查找node的节点名为tagName的祖先节点, 查找过程中根据includeSelf的值决定是否包含node节点自身 +
+ + + + + + +
    +
  • + 警告: 查找的终点是到body节点为止 +
  • +
+ + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 需要查找的节点对象 +
+ tagNames + + Array + + 需要查找的父节点的名称数组 +
+ includeSelf + + Boolean + + 查找过程是否包含node节点自身 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Node | NULL + + 如果找到符合条件的节点, 则返回该节点, 否则返回NULL +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
 var queryTarget = document.getElementsByTagName("div")[0];
+ var node = UE.dom.domUtils.findParentByTagName( queryTarget, [ "DIV" ], true );
+ //output: true
+ console.log( queryTarget === node );
+
+
+
+ +
+ + +
+
+
+

findParentByTagName(Node node, Array tagNames, Boolean includeSelf, Function excludeFn)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 查找node的节点名为tagName的祖先节点,并且该祖先节点不满足excludeFn过滤器的过滤要求, + 查找过程中根据includeSelf的值决定是否包含node节点自身, +
+ + + + +
    +
  • + 提示: 查找过滤器excludeFn要求对不应该被匹配的节点应该返回true +
  • +
+ + + + + + + +
    +
  • + 警告: 查找的终点是到body节点为止 +
  • +
+ + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 需要查找的节点对象 +
+ tagNames + + Array + + 需要查找的父节点的名称数组 +
+ includeSelf + + Boolean + + 查找过程是否包含node节点自身 +
+ excludeFn + + Function + + 查找过程中应用的过滤器, 如果该过滤器对给定的节点返回true, + 则该节点将被排除在查询结果之外。 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Node | NULL + + 如果找到符合条件的节点, 则返回该节点, 否则返回NULL +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
 var queryTarget = document.getElementsByTagName("div")[0];
+
+ //需要查找的节点和过滤器的过滤条件刚好冲突, 执行结果将永远为NULL
+ var node = UE.dom.domUtils.findParentByTagName( queryTarget, [ "DIV" ], false, function ( node ) {
+
+      return node.tagName.toLowerCase() === 'div';
+
+ } );
+ //output: true
+ console.log( queryTarget === null );
+
+
+
+ +
+ + +
+
+
+

insertAfter(Node node, Node newNode)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 在节点node后面插入新节点newNode +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 目标节点 +
+ newNode + + Node + + 新插入的节点, 该节点将置于目标节点之后 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Node + + 新插入的节点 +
+
+ + + + +
+
+
+

remove(Node node)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 删除节点node及其下属的所有节点 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 需要删除的节点对象 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Node + + 返回刚删除的节点对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
1
+2
+3
+4
+5
+6
+7
+8
 <div id="test">
+     <div id="child">你好</div>
+ </div>
+ <script>
+     UE.dom.domUtils.remove( document.body, false );
+     //output: false
+     console.log( document.getElementById( "child" ) !== null );
+ </script>
+
+
+
+ +
+ + +
+
+
+

remove(Node node, Boolean keepChildren)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 删除节点node,并根据keepChildren的值决定是否保留子节点 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 需要删除的节点对象 +
+ keepChildren + + Boolean + + 是否需要保留子节点 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Node + + 返回刚删除的节点对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
1
+2
+3
+4
+5
+6
+7
+8
 <div id="test">
+     <div id="child">你好</div>
+ </div>
+ <script>
+     UE.dom.domUtils.remove( document.body, true );
+     //output: true
+     console.log( document.getElementById( "child" ) !== null );
+ </script>
+
+
+
+ +
+ + +
+
+
+

isBookmarkNode(Node node)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检测节点node是否属是UEditor定义的bookmark节点 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 需要检测的节点对象 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 是否是bookmark节点 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
1
+2
+3
+4
+5
+6
 <span id="_baidu_bookmark_1"></span>
+ <script>
+      var bookmarkNode = document.getElementById("_baidu_bookmark_1");
+      //output: true
+      console.log( UE.dom.domUtils.isBookmarkNode( bookmarkNode ) );
+ </script>
+
+
+
+ +
+ + +
+
+
+

getWindow(Node node)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取节点node所属的window对象 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 节点对象 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Window + + 当前节点所属的window对象 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
 //output: true
+ console.log( UE.dom.domUtils.getWindow( document.body ) === window );
+
+
+
+ +
+ + +
+
+
+

getCommonAncestor(Node nodeA, Node nodeB)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取离nodeA与nodeB最近的公共的祖先节点 +
+ + + + +
    +
  • + 提示: 如果给定的两个节点是同一个节点, 将直接返回该节点。 +
  • +
+ + + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ nodeA + + Node + + 第一个节点 +
+ nodeB + + Node + + 第二个节点 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Node | NULL + + 如果未找到公共节点, 返回NULL, 否则返回最近的公共祖先节点。 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 var commonAncestor = UE.dom.domUtils.getCommonAncestor( document.body, document.body.firstChild );
+ //output: true
+ console.log( commonAncestor.tagName.toLowerCase() === 'body' );
+
+
+
+ +
+ + +
+
+
+

split(Node textNode, int offset)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 将一个文本节点textNode拆分成两个文本节点,offset指定拆分位置 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ textNode + + Node + + 需要拆分的文本节点对象 +
+ offset + + int + + 需要拆分的位置, 位置计算从0开始 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Node + + 拆分后形成的新节点 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
1
+2
+3
+4
+5
+6
 <div id="test">abcdef</div>
+ <script>
+      var newNode = UE.dom.domUtils.split( document.getElementById( "test" ), 3 );
+      //output: def
+      console.log( newNode.nodeValue );
+ </script>
+
+
+
+ +
+ + +
+
+
+

isWhitespace(Node node)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检测文本节点textNode是否为空节点(包括空格、换行、占位符等字符) +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 需要检测的节点对象 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 检测的节点是否为空 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
1
+2
+3
+4
+5
+6
+7
 <div id="test">
+
+ </div>
+ <script>
+      //output: true
+      console.log( UE.dom.domUtils.isWhitespace( document.getElementById("test").firstChild ) );
+ </script>
+
+
+
+ +
+ + +
+
+
+

getXY(Node element)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取元素element相对于viewport的位置坐标 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ element + + Node + + 需要计算位置的节点对象 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ KeyValueMap + + 返回形如{x:left,y:top}的一个key-value映射对象, 其中键x代表水平偏移距离, + y代表垂直偏移距离。 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 var location = UE.dom.domUtils.getXY( document.getElementById("test") );
+ //output: test的坐标为: 12, 24
+ console.log( 'test的坐标为: ', location.x, ',', location.y );
+
+
+
+ +
+ + +
+
+
+

on(Node element, String type, Function handler)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 为元素element绑定原生DOM事件,type为事件类型,handler为处理函数 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ element + + Node + + 需要绑定事件的节点对象 +
+ type + + String + + 绑定的事件类型 +
+ handler + + Function + + 事件处理器 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 UE.dom.domUtils.on(document.body,"click",function(e){
+     //e为事件对象,this为被点击元素对戏那个
+ });
+
+
+
+ +
+ + +
+
+
+

on(Node element, Array type, Function handler)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 为元素element绑定原生DOM事件,type为事件类型,handler为处理函数 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ element + + Node + + 需要绑定事件的节点对象 +
+ type + + Array + + 绑定的事件类型数组 +
+ handler + + Function + + 事件处理器 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 UE.dom.domUtils.on(document.body,["click","mousedown"],function(evt){
+     //evt为事件对象,this为被点击元素对象
+ });
+
+
+
+ +
+ + +
+
+
+

un(Node element, String type, Function handler)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 解除DOM事件绑定 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ element + + Node + + 需要解除事件绑定的节点对象 +
+ type + + String + + 需要接触绑定的事件类型 +
+ handler + + Function + + 对应的事件处理器 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 UE.dom.domUtils.un(document.body,"click",function(evt){
+     //evt为事件对象,this为被点击元素对象
+ });
+
+
+
+ +
+ + +
+
+
+

un(Node element, Array type, Function handler)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 解除DOM事件绑定 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ element + + Node + + 需要解除事件绑定的节点对象 +
+ type + + Array + + 需要接触绑定的事件类型数组 +
+ handler + + Function + + 对应的事件处理器 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
 UE.dom.domUtils.un(document.body, ["click","mousedown"],function(evt){
+     //evt为事件对象,this为被点击元素对象
+ });
+
+
+
+ +
+ + +
+
+
+

isSameElement(Node nodeA, Node nodeB)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 比较节点nodeA与节点nodeB是否具有相同的标签名、属性名以及属性值 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ nodeA + + Node + + 需要比较的节点 +
+ nodeB + + Node + + 需要比较的节点 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 两个节点是否具有相同的标签名、属性名以及属性值 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
 <span style="font-size:12px">ssss</span>
+ <span style="font-size:12px">bbbbb</span>
+ <span style="font-size:13px">ssss</span>
+ <span style="font-size:14px">bbbbb</span>
+
+ <script>
+
+     var nodes = document.getElementsByTagName( "span" );
+
+     //output: true
+     console.log( UE.dom.domUtils.isSameElement( nodes[0], nodes[1] ) );
+
+     //output: false
+     console.log( UE.dom.domUtils.isSameElement( nodes[2], nodes[3] ) );
+
+ </script>
+
+
+
+ +
+ + +
+
+
+

isSameStyle(Node nodeA, Node nodeB)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 判断节点nodeA与节点nodeB的元素的style属性是否一致 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ nodeA + + Node + + 需要比较的节点 +
+ nodeB + + Node + + 需要比较的节点 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 两个节点是否具有相同的style属性值 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
 <span style="font-size:12px">ssss</span>
+ <span style="font-size:12px">bbbbb</span>
+ <span style="font-size:13px">ssss</span>
+ <span style="font-size:14px">bbbbb</span>
+
+ <script>
+
+     var nodes = document.getElementsByTagName( "span" );
+
+     //output: true
+     console.log( UE.dom.domUtils.isSameElement( nodes[0], nodes[1] ) );
+
+     //output: false
+     console.log( UE.dom.domUtils.isSameElement( nodes[2], nodes[3] ) );
+
+ </script>
+
+
+
+ +
+ + +
+
+
+

isBlockElm(Node node)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检查节点node是否为block元素 +
+ + + + + + +
    +
  • + 警告: 该方法的判断规则如下: 如果该元素原本是block元素, 则不论该元素当前的css样式是什么都会返回true; + 否则,检测该元素的css样式, 如果该元素当前是block元素, 则返回true。 其余情况下都返回false。 +
  • +
+ + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 需要检测的节点对象 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 是否是block元素节点 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
 <span id="test1" style="display: block"></span>
+ <span id="test2"></span>
+ <div id="test3" style="display: inline"></div>
+
+ <script>
+
+     //output: true
+     console.log( UE.dom.domUtils.isBlockEle( document.getElementById("test1") ) );
+
+     //output: false
+     console.log( UE.dom.domUtils.isBlockEle( document.getElementById("test2") ) );
+
+     //output: true
+     console.log( UE.dom.domUtils.isBlockEle( document.getElementById("test3") ) );
+
+ </script>
+
+
+
+ +
+ + +
+
+
+

isBody(Element node)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检测node节点是否为body节点 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Element + + 需要检测的dom元素 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 给定的元素是否是body元素 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
 //output: true
+ console.log( UE.dom.domUtils.isBody( document.body ) );
+
+
+
+ +
+ + +
+
+
+

trimWhiteTextNode(Element node)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 删除node节点下首尾两端的空白文本子节点 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Element + + 需要执行删除操作的元素对象 +
+
+ + + + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
 <div id="test">
+     <div></div>
+ </div>
+
+ <script>
+     var testNode = document.getElementById("test");
+     //output: 3
+     console.log(testNode.childNodes.length);
+
+     UE.dom.domUtils.trimWhiteTextNode( testNode );
+     //output: 1
+     console.log(testNode.childNodes.length);
+ </script>
+
+
+
+ +
+ + +
+
+
+

mergeToParent(Element node)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 将节点node提取到父节点上 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Element + + 需要提取的元素对象 +
+
+ + + + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
 <div id="parent">
+     <div id="sub">
+         <span id="child"></span>
+     </div>
+ </div>
+
+ <script>
+
+     var child = document.getElementById( "child" );
+
+     //output: sub
+     console.log( child.parentNode.id );
+
+     UE.dom.domUtils.mergeToParent( child );
+
+     //output: parent
+     console.log( child.parentNode.id );
+
+ </script>
+
+
+
+ +
+ + +
+
+
+

mergeSibling(Element node)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 合并节点node的左右兄弟节点 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Element + + 需要合并的目标节点 +
+
+ + + + + + + + + 示例 + +
+ +
+ html代码: +
+ +
1
+2
+3
+4
+5
+6
+7
+8
 <b>xxxx</b><b id="test">ooo</b><b>xxxx</b>
+
+ <script>
+     var demoNode = document.getElementById("test");
+     UE.dom.domUtils.mergeSibling( demoNode );
+     //output: xxxxoooxxxx
+     console.log( demoNode.innerHTML );
+ </script>
+
+
+
+ +
+ + +
+
+
+

mergeSibling(Element node, Boolean ignorePre)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 合并节点node的左右兄弟节点, 可以根据给定的条件选择是否忽略合并左节点。 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Element + + 需要合并的目标节点 +
+ ignorePre + + Boolean + + 是否忽略合并左节点 +
+
+ + + + + + + + + 示例 + +
+ +
+ html代码: +
+ +
1
+2
+3
+4
+5
+6
+7
+8
 <b>xxxx</b><b id="test">ooo</b><b>xxxx</b>
+
+ <script>
+     var demoNode = document.getElementById("test");
+     UE.dom.domUtils.mergeSibling( demoNode, true );
+     //output: oooxxxx
+     console.log( demoNode.innerHTML );
+ </script>
+
+
+
+ +
+ + +
+
+
+

mergeSibling(Element node, Boolean ignorePre, Boolean ignoreNext)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 合并节点node的左右兄弟节点,可以根据给定的条件选择是否忽略合并左右节点。 +
+ + + + +
    +
  • + 提示: 如果同时忽略左右节点, 则该操作什么也不会做 +
  • +
+ + + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Element + + 需要合并的目标节点 +
+ ignorePre + + Boolean + + 是否忽略合并左节点 +
+ ignoreNext + + Boolean + + 是否忽略合并右节点 +
+
+ + + + + + + + + 示例 + +
+ +
+ html代码: +
+ +
1
+2
+3
+4
+5
+6
+7
+8
 <b>xxxx</b><b id="test">ooo</b><b>xxxx</b>
+
+ <script>
+     var demoNode = document.getElementById("test");
+     UE.dom.domUtils.mergeSibling( demoNode, false, true );
+     //output: xxxxooo
+     console.log( demoNode.innerHTML );
+ </script>
+
+
+
+ +
+ + +
+
+
+

unSelectable(Element node)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 设置节点node及其子节点不会被选中 +
+ + + + +
    +
  • + 提示: 执行该操作后的节点, 将不能被鼠标选中 +
  • +
+ + + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Element + + 需要执行操作的dom元素 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 UE.dom.domUtils.unSelectable( document.body );
+
+
+
+ +
+ + +
+
+
+

removeAttributes(String attrNames)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 删除节点node上的指定属性名称的属性 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ attrNames + + String + + 可以是空格隔开的多个属性名称,该操作将会依次删除相应的属性 +
+
+ + + + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
 <div id="wrap">
+      <span style="font-size:14px;" id="test" name="followMe">xxxxx</span>
+ </div>
+
+ <script>
+
+     UE.dom.domUtils.removeAttributes( document.getElementById( "test" ), "id name" );
+
+     //output: <span style="font-size:14px;">xxxxx</span>
+     console.log( document.getElementById("wrap").innerHTML );
+
+ </script>
+
+
+
+ +
+ + +
+
+
+

removeAttributes(Array attrNames)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 删除节点node上的指定属性名称的属性 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ attrNames + + Array + + 需要删除的属性名数组 +
+
+ + + + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
 <div id="wrap">
+      <span style="font-size:14px;" id="test" name="followMe">xxxxx</span>
+ </div>
+
+ <script>
+
+     UE.dom.domUtils.removeAttributes( document.getElementById( "test" ), ["id", "name"] );
+
+     //output: <span style="font-size:14px;">xxxxx</span>
+     console.log( document.getElementById("wrap").innerHTML );
+
+ </script>
+
+
+
+ +
+ + +
+
+
+

createElement(DomDocument doc, String tagName, KeyValueMap attrs)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 在doc下创建一个标签名为tag,属性为attrs的元素 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ doc + + DomDocument + + 新创建的元素属于该document节点创建 +
+ tagName + + String + + 需要创建的元素的标签名 +
+ attrs + + KeyValueMap + + 新创建的元素的属性key-value集合 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Element + + 新创建的元素对象 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
+6
+7
+8
+9
 var ele = UE.dom.domUtils.createElement( document, 'div', {
+     id: 'test'
+ } );
+
+ //output: DIV
+ console.log( ele.tagName );
+
+ //output: test
+ console.log( ele.id );
+
+
+
+ +
+ + +
+
+
+

setAttributes(Element node, KeyValueMap attrs)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 为节点node添加属性attrs,attrs为属性键值对 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Element + + 需要设置属性的元素对象 +
+ attrs + + KeyValueMap + + 需要设置的属性名-值对 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Element + + 设置属性的元素对象 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
 <span id="test"></span>
+
+ <script>
+
+     var testNode = UE.dom.domUtils.setAttributes( document.getElementById( "test" ), {
+         id: 'demo'
+     } );
+
+     //output: demo
+     console.log( testNode.id );
+
+ </script>
+
+
+
+ +
+ + +
+
+
+

getComputedStyle(Element element, String styleName)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取元素element经过计算后的样式值 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ element + + Element + + 需要获取样式的元素对象 +
+ styleName + + String + + 需要获取的样式名 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 获取到的样式值 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
 <style type="text/css">
+      #test {
+          font-size: 15px;
+      }
+ </style>
+
+ <span id="test"></span>
+
+ <script>
+     //output: 15px
+     console.log( UE.dom.domUtils.getComputedStyle( document.getElementById( "test" ), 'font-size' ) );
+ </script>
+
+
+
+ +
+ + +
+
+
+

removeClasses(Element ele, String classNames)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 删除元素element指定的className +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ ele + + Element + + 需要删除class的元素节点 +
+ classNames + + String + + 需要删除的className, 多个className之间以空格分开 +
+
+ + + + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
 <span id="test" class="test1 test2 test3">xxx</span>
+
+ <script>
+
+     var testNode = document.getElementById( "test" );
+     UE.dom.domUtils.removeClasses( testNode, "test1 test2" );
+
+     //output: test3
+     console.log( testNode.className );
+
+ </script>
+
+
+
+ +
+ + +
+
+
+

removeClasses(Element ele, Array classNames)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 删除元素element指定的className +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ ele + + Element + + 需要删除class的元素节点 +
+ classNames + + Array + + 需要删除的className数组 +
+
+ + + + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
 <span id="test" class="test1 test2 test3">xxx</span>
+
+ <script>
+
+     var testNode = document.getElementById( "test" );
+     UE.dom.domUtils.removeClasses( testNode, ["test1", "test2"] );
+
+     //output: test3
+     console.log( testNode.className );
+
+ </script>
+
+
+
+ +
+ + +
+
+
+

addClass(Node ele, String classNames)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 给元素element添加className +
+ + + + +
    +
  • + 提示: 相同的类名不会被重复添加 +
  • +
+ + + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ ele + + Node + + 需要增加className的元素 +
+ classNames + + String + + 需要添加的className, 多个className之间以空格分割 +
+
+ + + + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
 <span id="test" class="cls1 cls2"></span>
+
+ <script>
+     var testNode = document.getElementById("test");
+
+     UE.dom.domUtils.addClass( testNode, "cls2 cls3 cls4" );
+
+     //output: cl1 cls2 cls3 cls4
+     console.log( testNode.className );
+
+ <script>
+
+
+
+ +
+ + +
+
+
+

addClass(Node ele, Array classNames)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 给元素element添加className +
+ + + + +
    +
  • + 提示: 相同的类名不会被重复添加 +
  • +
+ + + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ ele + + Node + + 需要增加className的元素 +
+ classNames + + Array + + 需要添加的className的数组 +
+
+ + + + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
 <span id="test" class="cls1 cls2"></span>
+
+ <script>
+     var testNode = document.getElementById("test");
+
+     UE.dom.domUtils.addClass( testNode, ["cls2", "cls3", "cls4"] );
+
+     //output: cl1 cls2 cls3 cls4
+     console.log( testNode.className );
+
+ <script>
+
+
+
+ +
+ + +
+
+
+

hasClass(Node ele, String classNames)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 判断元素element是否包含给定的样式类名className +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ ele + + Node + + 需要检测的元素 +
+ classNames + + String + + 需要检测的className, 多个className之间用空格分割 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 元素是否包含所有给定的className +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
 <span id="test1" class="cls1 cls2"></span>
+
+ <script>
+     var test1 = document.getElementById("test1");
+
+     //output: false
+     console.log( UE.dom.domUtils.hasClass( test1, "cls2 cls1 cls3" ) );
+
+     //output: true
+     console.log( UE.dom.domUtils.hasClass( test1, "cls2 cls1" ) );
+ </script>
+
+
+
+ +
+ + +
+
+
+

hasClass(Node ele, Array classNames)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 判断元素element是否包含给定的样式类名className +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ ele + + Node + + 需要检测的元素 +
+ classNames + + Array + + 需要检测的className数组 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 元素是否包含所有给定的className +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
 <span id="test1" class="cls1 cls2"></span>
+
+ <script>
+     var test1 = document.getElementById("test1");
+
+     //output: false
+     console.log( UE.dom.domUtils.hasClass( test1, [ "cls2", "cls1", "cls3" ] ) );
+
+     //output: true
+     console.log( UE.dom.domUtils.hasClass( test1, [ "cls2", "cls1" ]) );
+ </script>
+
+
+
+ +
+ + +
+
+
+

preventDefault(Event evt)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 阻止事件默认行为 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ evt + + Event + + 需要阻止默认行为的事件对象 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 UE.dom.domUtils.preventDefault( evt );
+
+
+
+ +
+ + +
+
+
+

removeStyle(Element element, String styleName)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 删除元素element指定的样式 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ element + + Element + + 需要删除样式的元素 +
+ styleName + + String + + 需要删除的样式名 +
+
+ + + + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
 <span id="test" style="color: red; background: blue;"></span>
+
+ <script>
+
+     var testNode = document.getElementById("test");
+
+     UE.dom.domUtils.removeStyle( testNode, 'color' );
+
+     //output: background: blue;
+     console.log( testNode.style.cssText );
+
+ </script>
+
+
+
+ +
+ + +
+
+
+

getStyle(Element element, String styleName)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取元素element的style属性的指定值 +
+ + + + + + +
    +
  • + 警告: 该方法仅获取元素style属性中所标明的值 +
  • +
+ + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ element + + Element + + 需要获取属性值的元素 +
+ styleName + + String + + 需要获取的style的名称 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 该元素包含指定的style属性值 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
 <div id="test" style="color: red;"></div>
+
+ <script>
+
+      var testNode = document.getElementById( "test" );
+
+      //output: red
+      console.log( UE.dom.domUtils.getStyle( testNode, "color" ) );
+
+      //output: ""
+      console.log( UE.dom.domUtils.getStyle( testNode, "background" ) );
+
+ </script>
+
+
+
+ +
+ + +
+
+
+

setStyle(Element element, String styleName, String styleValue)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 为元素element设置样式属性值 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ element + + Element + + 需要设置样式的元素 +
+ styleName + + String + + 样式名 +
+ styleValue + + String + + 样式值 +
+
+ + + + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
 <div id="test"></div>
+
+ <script>
+
+      var testNode = document.getElementById( "test" );
+
+      //output: ""
+      console.log( testNode.style.color );
+
+      UE.dom.domUtils.setStyle( testNode, 'color', 'red' );
+      //output: "red"
+      console.log( testNode.style.color );
+
+ </script>
+
+
+
+ +
+ + +
+
+
+

setStyles(Element element, KeyValueMap styles)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 为元素element设置多个样式属性值 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ element + + Element + + 需要设置样式的元素 +
+ styles + + KeyValueMap + + 样式名值对 +
+
+ + + + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
 <div id="test"></div>
+
+ <script>
+
+      var testNode = document.getElementById( "test" );
+
+      //output: ""
+      console.log( testNode.style.color );
+
+      UE.dom.domUtils.setStyles( testNode, {
+          'color': 'red'
+      } );
+      //output: "red"
+      console.log( testNode.style.color );
+
+ </script>
+
+
+
+ +
+ + +
+
+
+

removeDirtyAttr()

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 删除_moz_dirty属性 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + + +
+
+
+

getChildCount(Element node)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取子节点的数量 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Element + + 需要检测的元素 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Number + + 给定的node元素的子节点数量 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
 <div id="test">
+      <span></span>
+ </div>
+
+ <script>
+
+     //output: 3
+     console.log( UE.dom.domUtils.getChildCount( document.getElementById("test") ) );
+
+ </script>
+
+
+
+ +
+ + +
+
+
+

getChildCount(Element node, Function fn)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 根据给定的过滤规则, 获取符合条件的子节点的数量 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Element + + 需要检测的元素 +
+ fn + + Function + + 过滤器, 要求对符合条件的子节点返回true, 反之则要求返回false +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Number + + 符合过滤条件的node元素的子节点数量 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
 <div id="test">
+      <span></span>
+ </div>
+
+ <script>
+
+     //output: 1
+     console.log( UE.dom.domUtils.getChildCount( document.getElementById("test"), function ( node ) {
+
+         return node.nodeType === 1;
+
+     } ) );
+
+ </script>
+
+
+
+ +
+ + +
+
+
+

isEmptyNode(Node node)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 判断给定节点是否为空节点 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 需要检测的节点对象 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 节点是否为空 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 UE.dom.domUtils.isEmptyNode( document.body );
+
+
+
+ +
+ + +
+
+
+

clearSelectedArr(Array nodes)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 清空给定节点所有的className +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ nodes + + Array + + 需要清空className的节点的数组集合 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
 UE.dom.domUtils.clearSelectedArr( [ document.body, document.body.firstChild ] );
+
+
+
+ +
+ + +
+
+
+

scrollToView(Node node, window win, Number offsetTop)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 将显示区域滚动到指定节点的位置 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 节点 +
+ win + + window + + window对象 +
+ offsetTop + + Number + + 距离上方的偏移量 +
+
+ + + + + + +
+
+
+

isBr(Node node)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 判断给定节点是否为br +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 需要判断的节点对象 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 给定的节点是否是br节点 +
+
+ + + + +
+
+
+

isFillChar(Node node, Boolean isInStart)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 判断给定的节点是否是一个“填充”节点 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 需要判断的节点 +
+ isInStart + + Boolean + + 是否从节点内容的开始位置匹配 +
+
+ + + + + + +
+
+
+

isEmptyBlock(Element node)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 判断给定的元素是否是一个空元素 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Element + + 需要判断的元素 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 是否是空元素 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
1
+2
+3
+4
+5
+6
 <div id="test"></div>
+
+ <script>
+     //output: true
+     console.log( UE.dom.domUtils.isEmptyBlock( document.getElementById("test") ) );
+ </script>
+
+
+
+ +
+ + +
+
+
+

isEmptyBlock(Element node, RegExp reg)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 根据指定的判断规则判断给定的元素是否是一个空元素 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Element + + 需要判断的元素 +
+ reg + + RegExp + + 对内容执行判断的正则表达式对象 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 是否是空元素 +
+
+ + + + +
+
+
+

setViewportOffset(Element element, KeyValueMap offset)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 移动元素使得该元素的位置移动指定的偏移量的距离 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ element + + Element + + 需要设置偏移量的元素 +
+ offset + + KeyValueMap + + 偏移量, 形如{ left: 100, top: 50 }的一个键值对, 表示该元素将在 + 现有的位置上向水平方向偏移offset.left的距离, 在竖直方向上偏移 + offset.top的距离 +
+
+ + + + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
 <div id="test" style="top: 100px; left: 50px; position: absolute;"></div>
+
+ <script>
+
+     var testNode = document.getElementById("test");
+
+     UE.dom.domUtils.setViewportOffset( testNode, {
+         left: 200,
+         top: 50
+     } );
+
+     //output: top: 300px; left: 100px; position: absolute;
+     console.log( testNode.style.cssText );
+
+ </script>
+
+
+
+ +
+ + +
+
+
+

fillNode(DomDocument doc, Node node)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 用“填充字符”填充节点 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ doc + + DomDocument + + 填充的节点所在的docment对象 +
+ node + + Node + + 需要填充的节点对象 +
+
+ + + + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
 <div id="test"></div>
+
+ <script>
+     var testNode = document.getElementById("test");
+
+     //output: 0
+     console.log( testNode.childNodes.length );
+
+     UE.dom.domUtils.fillNode( document, testNode );
+
+     //output: 1
+     console.log( testNode.childNodes.length );
+
+ </script>
+
+
+
+ +
+ + +
+
+
+

moveChild(Node src, Node tag)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 把节点src的所有子节点追加到另一个节点tag上去 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ src + + Node + + 源节点, 该节点下的所有子节点将被移除 +
+ tag + + Node + + 目标节点, 从源节点移除的子节点将被追加到该节点下 +
+
+ + + + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
 <div id="test1">
+      <span></span>
+ </div>
+ <div id="test2">
+     <div></div>
+ </div>
+
+ <script>
+
+     var test1 = document.getElementById("test1"),
+         test2 = document.getElementById("test2");
+
+     UE.dom.domUtils.moveChild( test1, test2 );
+
+     //output: ""(空字符串)
+     console.log( test1.innerHTML );
+
+     //output: "<div></div><span></span>"
+     console.log( test2.innerHTML );
+
+ </script>
+
+
+
+ +
+ + +
+
+
+

moveChild(Node src, Node tag, Boolean dir)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 把节点src的所有子节点移动到另一个节点tag上去, 可以通过dir参数控制附加的行为是“追加”还是“插入顶部” +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ src + + Node + + 源节点, 该节点下的所有子节点将被移除 +
+ tag + + Node + + 目标节点, 从源节点移除的子节点将被附加到该节点下 +
+ dir + + Boolean + + 附加方式, 如果为true, 则附加进去的节点将被放到目标节点的顶部, 反之,则放到末尾 +
+
+ + + + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
 <div id="test1">
+      <span></span>
+ </div>
+ <div id="test2">
+     <div></div>
+ </div>
+
+ <script>
+
+     var test1 = document.getElementById("test1"),
+         test2 = document.getElementById("test2");
+
+     UE.dom.domUtils.moveChild( test1, test2, true );
+
+     //output: ""(空字符串)
+     console.log( test1.innerHTML );
+
+     //output: "<span></span><div></div>"
+     console.log( test2.innerHTML );
+
+ </script>
+
+
+
+ +
+ + +
+
+
+

hasNoAttributes(Node node)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 判断节点的标签上是否不存在任何属性 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 需要检测的节点对象 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 节点是否不包含任何属性 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
 <div id="test"><span>xxxx</span></div>
+
+ <script>
+
+     //output: false
+     console.log( UE.dom.domUtils.hasNoAttributes( document.getElementById("test") ) );
+
+     //output: true
+     console.log( UE.dom.domUtils.hasNoAttributes( document.getElementById("test").firstChild ) );
+
+ </script>
+
+
+
+ +
+ + +
+
+
+

isCustomeNode(Node node)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检测节点是否是UEditor所使用的辅助节点 +
+ + + + +
    +
  • + 提示: 辅助节点是指编辑器要完成工作临时添加的节点, 在输出的时候将会从编辑器内移除, 不会影响最终的结果。 +
  • +
+ + + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 需要检测的节点 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 给定的节点是否是一个辅助节点 +
+
+ + + + +
+
+
+

isTagNode(Node node, String tagName)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 检测节点的标签是否是给定的标签 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ node + + Node + + 需要检测的节点对象 +
+ tagName + + String + + 标签 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 节点的标签是否是给定的标签 +
+
+ + + + + + + 示例 + +
+ +
+ html代码: +
+ +
1
+2
+3
+4
+5
+6
+7
+8
 <div id="test"></div>
+
+ <script>
+
+     //output: true
+     console.log( UE.dom.domUtils.isTagNode( document.getElementById("test"), "div" ) );
+
+ </script>
+
+
+
+ +
+ + +
+
+
+

filterNodeList(Array nodeList, Function fn)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 给定一个节点数组,在通过指定的过滤器过滤后, 获取其中满足过滤条件的第一个节点 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ nodeList + + Array + + 需要过滤的节点数组 +
+ fn + + Function + + 过滤器, 对符合条件的节点, 执行结果返回true, 反之则返回false +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Node | NULL + + 如果找到符合过滤条件的节点, 则返回该节点, 否则返回NULL +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
+6
+7
 var divNodes = document.getElementsByTagName("div");
+ divNodes = [].slice.call( divNodes, 0 );
+
+ //output: null
+ console.log( UE.dom.domUtils.filterNodeList( divNodes, function ( node ) {
+     return node.tagName.toLowerCase() !== 'div';
+ } ) );
+
+
+
+ +
+ + +
+
+
+

filterNodeList(Array nodeList, String tagNames)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 给定一个节点数组nodeList和一组标签名tagNames, 获取其中能够匹配标签名的节点集合中的第一个节点 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ nodeList + + Array + + 需要过滤的节点数组 +
+ tagNames + + String + + 需要匹配的标签名, 多个标签名之间用空格分割 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Node | NULL + + 如果找到标签名匹配的节点, 则返回该节点, 否则返回NULL +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
 var divNodes = document.getElementsByTagName("div");
+ divNodes = [].slice.call( divNodes, 0 );
+
+ //output: null
+ console.log( UE.dom.domUtils.filterNodeList( divNodes, 'a span' ) );
+
+
+
+ +
+ + +
+
+
+

filterNodeList(Array nodeList, Function fn, Boolean forAll)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 给定一个节点数组,在通过指定的过滤器过滤后, 如果参数forAll为true, 则会返回所有满足过滤 + 条件的节点集合, 否则, 返回满足条件的节点集合中的第一个节点 +
+ + + + + +
+
+ 所属模块: UE.dom.domUtils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ nodeList + + Array + + 需要过滤的节点数组 +
+ fn + + Function + + 过滤器, 对符合条件的节点, 执行结果返回true, 反之则返回false +
+ forAll + + Boolean + + 是否返回整个节点数组, 如果该参数为false, 则返回节点集合中的第一个节点 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Array | Node | NULL + + 如果找到符合过滤条件的节点, 则根据参数forAll的值决定返回满足 + 过滤条件的节点数组或第一个节点, 否则返回NULL +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
 var divNodes = document.getElementsByTagName("div");
+ divNodes = [].slice.call( divNodes, 0 );
+
+ //output: 3(假定有3个div)
+ console.log( divNodes.length );
+
+ var nodes = UE.dom.domUtils.filterNodeList( divNodes, function ( node ) {
+     return node.tagName.toLowerCase() === 'div';
+ }, true );
+
+ //output: 3
+ console.log( nodes.length );
+
+ var node = UE.dom.domUtils.filterNodeList( divNodes, function ( node ) {
+     return node.tagName.toLowerCase() === 'div';
+ }, false );
+
+ //output: div
+ console.log( node.nodeName );
+
+
+
+ +
+ + +
+
+ + + +
+ +
+ + +
+ +
+ +
+ +
+
+

UE.utils

+
+ 模块 +
+
+ +
+ +
+ UEditor封装使用的静态工具函数 +
+ + + + + +
+ +
+ +
+ + + + + + 方法列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
方法签名静态描述
+ each(Object obj, Function iterator) + + 是 + + 用给定的迭代器遍历对象 +
+ each(Array array, Function iterator) + + 是 + + 用给定的迭代器遍历数组或类数组对象 +
+ makeInstance(Object protoObject) + + 是 + + 以给定对象作为原型创建一个新对象 +
+ extend(Object target, Object source) + + 是 + + 将source对象中的属性扩展到target对象上 +
+ extend(Object target, Object source, Boolean isKeepTarget) + + 是 + + 将source对象中的属性扩展到target对象上, 根据指定的isKeepTarget值决定是否保留目标对象中与 + 源对象属性名相同的属性值。 +
+ extend2(Object target, Object... source) + + 是 + + 将给定的多个对象的属性复制到目标对象target上 +
+ inherits(Object subClass, Object superClass) + + 是 + + 模拟继承机制, 使得subClass继承自superClass +
+ bind(Function fn, Object content) + + 是 + + 用指定的context对象作为函数fn的上下文 +
+ defer(Function fn, int delay) + + 是 + + 创建延迟指定时间后执行的函数fn +
+ defer(Function fn, int delay, Boolean exclusion) + + 是 + + 创建延迟指定时间后执行的函数fn, 如果在延迟时间内再次执行该方法, 将会根据指定的exclusion的值, + 决定是否取消前一次函数的执行, 如果exclusion的值为true, 则取消执行,反之,将继续执行前一个方法。 +
+ indexOf(Array array, * item) + + 是 + + 获取元素item在数组array中首次出现的位置, 如果未找到item, 则返回-1 +
+ indexOf(Array array, * item, int start) + + 是 + + 获取元素item数组array中首次出现的位置, 如果未找到item, 则返回-1。通过start的值可以指定搜索的起始位置。 +
+ removeItem(Array array, * item) + + 是 + + 移除数组array中所有的元素item +
+ trim(String str) + + 是 + + 删除字符串str的首尾空格 +
+ listToMap(String str) + + 是 + + 将字符串str以','分隔成数组后,将该数组转换成哈希对象, 其生成的hash对象的key为数组中的元素, value为1 +
+ listToMap(Array arr) + + 是 + + 将字符串数组转换成哈希对象, 其生成的hash对象的key为数组中的元素, value为1 +
+ unhtml(String str) + + 是 + + 将str中的html符号转义,将转义“',&,<,",>”五个字符 +
+ html(String str) + + 是 + + 将str中的转义字符还原成html字符 +
+ cssStyleToDomStyle(String cssName) + + 是 + + 将css样式转换为驼峰的形式 +
+ loadFile(DomDocument document, KeyValueMap options) + + 是 + + 动态加载文件到doc中 +
+ loadFile(DomDocument document, KeyValueMap options, Function fn) + + 是 + + 动态加载文件到doc中,加载成功后执行的回调函数fn +
+ isEmptyObject(* obj) + + 是 + + 判断obj对象是否为空 +
+ transUnitToPx() + + 是 + + 把cm/pt为单位的值转换为px为单位的值 +
+ domReady(Function fn) + + 是 + + 在dom树ready之后执行给定的回调函数 +
+ isString(* object) + + 是 + + 判断给定的对象是否是字符串 +
+ isArray(* object) + + 是 + + 判断给定的对象是否是数组 +
+ isFunction(* object) + + 是 + + 判断给定的对象是否是一个Function +
+ isNumber(* object) + + 是 + + 判断给定的对象是否是Number +
+ isRegExp(* object) + + 是 + + 判断给定的对象是否是一个正则表达式 +
+ isObject(* object) + + 是 + + 判断给定的对象是否是一个普通对象 +
+
+ + + + +
+ +
+ + + + 模块成员详细描述(UE.utils) + +
+ + + + + +
+
+

each(Object obj, Function iterator)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 用给定的迭代器遍历对象 +
+ + + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ obj + + Object + + 需要遍历的对象 +
+ iterator + + Function + + 迭代器, 该方法接受两个参数, 第一个参数是当前所处理的value, 第二个参数是当前遍历对象的key +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
 var demoObj = {
+     key1: 1,
+     key2: 2
+ };
+
+ //output: key1: 1, key2: 2
+ UE.utils.each( demoObj, funciton ( value, key ) {
+
+     console.log( key + ":" + value );
+
+ } );
+
+
+
+ +
+ + +
+
+
+

each(Array array, Function iterator)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 用给定的迭代器遍历数组或类数组对象 +
+ + + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ array + + Array + + 需要遍历的数组或者类数组 +
+ iterator + + Function + + 迭代器, 该方法接受两个参数, 第一个参数是当前所处理的value, 第二个参数是当前遍历对象的key +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
+6
+7
+8
 var divs = document.getElmentByTagNames( "div" );
+
+ //output: 0: DIV, 1: DIV ...
+ UE.utils.each( divs, funciton ( value, key ) {
+
+     console.log( key + ":" + value.tagName );
+
+ } );
+
+
+
+ +
+ + +
+
+
+

makeInstance(Object protoObject)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 以给定对象作为原型创建一个新对象 +
+ + + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ protoObject + + Object + + 该对象将作为新创建对象的原型 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Object + + 新的对象, 该对象的原型是给定的protoObject对象 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
 var protoObject = { sayHello: function () { console.log('Hello UEditor!'); } };
+
+ var newObject = UE.utils.makeInstance( protoObject );
+ //output: Hello UEditor!
+ newObject.sayHello();
+
+
+
+ +
+ + +
+
+
+

extend(Object target, Object source)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 将source对象中的属性扩展到target对象上 +
+ + + + +
    +
  • + 提示: 该方法将强制把source对象上的属性复制到target对象上 +
  • +
+ + + + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ target + + Object + + 目标对象, 新的属性将附加到该对象上 +
+ source + + Object + + 源对象, 该对象的属性会被附加到target对象上 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Object + + 返回target对象 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
+6
+7
 var target = { name: 'target', sex: 1 },
+      source = { name: 'source', age: 17 };
+
+ UE.utils.extend( target, source );
+
+ //output: { name: 'source', sex: 1, age: 17 }
+ console.log( target );
+
+
+
+ +
+ + +
+
+
+

extend(Object target, Object source, Boolean isKeepTarget)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 将source对象中的属性扩展到target对象上, 根据指定的isKeepTarget值决定是否保留目标对象中与 + 源对象属性名相同的属性值。 +
+ + + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ target + + Object + + 目标对象, 新的属性将附加到该对象上 +
+ source + + Object + + 源对象, 该对象的属性会被附加到target对象上 +
+ isKeepTarget + + Boolean + + 是否保留目标对象中与源对象中属性名相同的属性 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Object + + 返回target对象 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
+6
+7
 var target = { name: 'target', sex: 1 },
+      source = { name: 'source', age: 17 };
+
+ UE.utils.extend( target, source, true );
+
+ //output: { name: 'target', sex: 1, age: 17 }
+ console.log( target );
+
+
+
+ +
+ + +
+
+
+

extend2(Object target, Object... source)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 将给定的多个对象的属性复制到目标对象target上 +
+ + + + +
    +
  • + 提示: 该方法将强制把源对象上的属性复制到target对象上 +
  • +
+ +
    +
  • + 提示: 该方法支持两个及以上的参数, 从第二个参数开始, 其属性都会被复制到第一个参数上。 如果遇到同名的属性, + 将会覆盖掉之前的值。 +
  • +
+ + + + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ target + + Object + + 目标对象, 新的属性将附加到该对象上 +
+ source + + Object... + + 源对象, 支持多个对象, 该对象的属性会被附加到target对象上 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Object + + 返回target对象 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
+6
+7
+8
 var target = {},
+     source1 = { name: 'source', age: 17 },
+     source2 = { title: 'dev' };
+
+ UE.utils.extend2( target, source1, source2 );
+
+ //output: { name: 'source', age: 17, title: 'dev' }
+ console.log( target );
+
+
+
+ +
+ + +
+
+
+

inherits(Object subClass, Object superClass)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 模拟继承机制, 使得subClass继承自superClass +
+ + + + + + +
    +
  • + 警告: 该方法只能让subClass继承超类的原型, subClass对象自身的属性和方法不会被继承 +
  • +
+ + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ subClass + + Object + + 子类对象 +
+ superClass + + Object + + 超类对象 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Object + + 继承superClass后的子类对象 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
 function SuperClass(){
+     this.name = "小李";
+ }
+
+ SuperClass.prototype = {
+     hello:function(str){
+         console.log(this.name + str);
+     }
+ }
+
+ function SubClass(){
+     this.name = "小张";
+ }
+
+ UE.utils.inherits(SubClass,SuperClass);
+
+ var sub = new SubClass();
+ //output: '小张早上好!
+ sub.hello("早上好!");
+
+
+
+ +
+ + +
+
+
+

bind(Function fn, Object content)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 用指定的context对象作为函数fn的上下文 +
+ + + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ fn + + Function + + 需要绑定上下文的函数对象 +
+ content + + Object + + 函数fn新的上下文对象 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Function + + 一个新的函数, 该函数作为原始函数fn的代理, 将完成fn的上下文调换工作。 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
 var name = 'window',
+     newTest = null;
+
+ function test () {
+     console.log( this.name );
+ }
+
+ newTest = UE.utils.bind( test, { name: 'object' } );
+
+ //output: object
+ newTest();
+
+ //output: window
+ test();
+
+
+
+ +
+ + +
+
+
+

defer(Function fn, int delay)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 创建延迟指定时间后执行的函数fn +
+ + + + + + +
    +
  • + 警告: 该方法的时间控制是不精确的,仅仅只能保证函数的执行是在给定的时间之后, + 而不能保证刚好到达延迟时间时执行。 +
  • +
+ + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ fn + + Function + + 需要延迟执行的函数对象 +
+ delay + + int + + 延迟的时间, 单位是毫秒 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Function + + 目标函数fn的代理函数, 只有执行该函数才能起到延时效果 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
 var start = 0;
+
+ function test(){
+     console.log( new Date() - start );
+ }
+
+ var testDefer = UE.utils.defer( test, 1000 );
+ //
+ start = new Date();
+ //output: (大约在1000毫秒之后输出) 1000
+ testDefer();
+
+
+
+ +
+ + +
+
+
+

defer(Function fn, int delay, Boolean exclusion)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 创建延迟指定时间后执行的函数fn, 如果在延迟时间内再次执行该方法, 将会根据指定的exclusion的值, + 决定是否取消前一次函数的执行, 如果exclusion的值为true, 则取消执行,反之,将继续执行前一个方法。 +
+ + + + + + +
    +
  • + 警告: 该方法的时间控制是不精确的,仅仅只能保证函数的执行是在给定的时间之后, + 而不能保证刚好到达延迟时间时执行。 +
  • +
+ + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ fn + + Function + + 需要延迟执行的函数对象 +
+ delay + + int + + 延迟的时间, 单位是毫秒 +
+ exclusion + + Boolean + + 如果在延迟时间内再次执行该函数,该值将决定是否取消执行前一次函数的执行, + 值为true表示取消执行, 反之则将在执行前一次函数之后才执行本次函数调用。 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Function + + 目标函数fn的代理函数, 只有执行该函数才能起到延时效果 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
+6
+7
+8
+9
 function test(){
+     console.log(1);
+ }
+
+ var testDefer = UE.utils.defer( test, 1000, true );
+
+ //output: (两次调用仅有一次输出) 1
+ testDefer();
+ testDefer();
+
+
+
+ +
+ + +
+
+
+

indexOf(Array array, * item)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取元素item在数组array中首次出现的位置, 如果未找到item, 则返回-1 +
+ + + + +
    +
  • + 提示: 该方法的匹配过程使用的是恒等“===” +
  • +
+ + + + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ array + + Array + + 需要查找的数组对象 +
+ item + + * + + 需要在目标数组中查找的值 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ int + + 返回item在目标数组array中首次出现的位置, 如果在数组中未找到item, 则返回-1 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
 var item = 1,
+     arr = [ 3, 4, 6, 8, 1, 1, 2 ];
+
+ //output: 4
+ console.log( UE.utils.indexOf( arr, item ) );
+
+
+
+ +
+ + +
+
+
+

indexOf(Array array, * item, int start)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 获取元素item数组array中首次出现的位置, 如果未找到item, 则返回-1。通过start的值可以指定搜索的起始位置。 +
+ + + + +
    +
  • + 提示: 该方法的匹配过程使用的是恒等“===” +
  • +
+ + + + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ array + + Array + + 需要查找的数组对象 +
+ item + + * + + 需要在目标数组中查找的值 +
+ start + + int + + 搜索的起始位置 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ int + + 返回item在目标数组array中的start位置之后首次出现的位置, 如果在数组中未找到item, 则返回-1 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
 var item = 1,
+     arr = [ 3, 4, 6, 8, 1, 2, 8, 3, 2, 1, 1, 4 ];
+
+ //output: 9
+ console.log( UE.utils.indexOf( arr, item, 5 ) );
+
+
+
+ +
+ + +
+
+
+

removeItem(Array array, * item)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 移除数组array中所有的元素item +
+ + + + +
    +
  • + 提示: 该方法的匹配过程使用的是恒等“===” +
  • +
+ + + + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ array + + Array + + 要移除元素的目标数组 +
+ item + + * + + 将要被移除的元素 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
 var arr = [ 4, 5, 7, 1, 3, 4, 6 ];
+
+ UE.utils.removeItem( arr, 4 );
+ //output: [ 5, 7, 1, 3, 6 ]
+ console.log( arr );
+
+
+
+ +
+ + +
+
+
+

trim(String str)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 删除字符串str的首尾空格 +
+ + + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ str + + String + + 需要删除首尾空格的字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 删除了首尾的空格后的字符串 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
 var str = " UEdtior ";
+
+ //output: 9
+ console.log( str.length );
+
+ //output: 7
+ console.log( UE.utils.trim( " UEdtior " ).length );
+
+ //output: 9
+ console.log( str.length );
+
+
+
+ +
+ + +
+
+
+

listToMap(String str)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 将字符串str以','分隔成数组后,将该数组转换成哈希对象, 其生成的hash对象的key为数组中的元素, value为1 +
+ + + + + + +
    +
  • + 警告: 该方法在生成的hash对象中,会为每一个key同时生成一个另一个全大写的key。 +
  • +
+ + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ str + + String + + 该字符串将被以','分割为数组, 然后进行转化 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Object + + 转化之后的hash对象 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
 //output: Object {UEdtior: 1, UEDTIOR: 1, Hello: 1, HELLO: 1}
+ console.log( UE.utils.listToMap( 'UEdtior,Hello' ) );
+
+
+
+ +
+ + +
+
+
+

listToMap(Array arr)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 将字符串数组转换成哈希对象, 其生成的hash对象的key为数组中的元素, value为1 +
+ + + + + + +
    +
  • + 警告: 该方法在生成的hash对象中,会为每一个key同时生成一个另一个全大写的key。 +
  • +
+ + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ arr + + Array + + 字符串数组 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Object + + 转化之后的hash对象 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
 //output: Object {UEdtior: 1, UEDTIOR: 1, Hello: 1, HELLO: 1}
+ console.log( UE.utils.listToMap( [ 'UEdtior', 'Hello' ] ) );
+
+
+
+ +
+ + +
+
+
+

unhtml(String str)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 将str中的html符号转义,将转义“',&,<,",>”五个字符 +
+ + + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ str + + String + + 需要转义的字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 转义后的字符串 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
 var html = '<body>&</body>';
+
+ //output: &lt;body&gt;&amp;&lt;/body&gt;
+ console.log( UE.utils.unhtml( html ) );
+
+
+
+ +
+ + +
+
+
+

html(String str)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 将str中的转义字符还原成html字符 +
+ + + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + 参考 + + + + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ str + + String + + 需要逆转义的字符串 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 逆转义后的字符串 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
 var str = '&lt;body&gt;&amp;&lt;/body&gt;';
+
+ //output: <body>&</body>
+ console.log( UE.utils.html( str ) );
+
+
+
+ +
+ + +
+
+
+

cssStyleToDomStyle(String cssName)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 将css样式转换为驼峰的形式 +
+ + + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ cssName + + String + + 需要转换的css样式名 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 转换成驼峰形式后的css样式名 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
 var str = 'border-top';
+
+ //output: borderTop
+ console.log( UE.utils.cssStyleToDomStyle( str ) );
+
+
+
+ +
+ + +
+
+
+

loadFile(DomDocument document, KeyValueMap options)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 动态加载文件到doc中 +
+ + + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ document + + DomDocument + + 需要加载资源文件的文档对象 +
+ options + + KeyValueMap + + 加载资源文件的属性集合, 取值请参考代码示例 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
+6
 UE.utils.loadFile( document, {
+     src:"test.js",
+     tag:"script",
+     type:"text/javascript",
+     defer:"defer"
+ } );
+
+
+
+ +
+ + +
+
+
+

loadFile(DomDocument document, KeyValueMap options, Function fn)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 动态加载文件到doc中,加载成功后执行的回调函数fn +
+ + + + + + +
    +
  • + 警告: 对于在同一个文档中多次加载同一URL的文件, 该方法会在第一次加载之后缓存该请求, + 在此之后的所有同一URL的请求, 将会直接出发回调。 +
  • +
+ + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
参数名类型描述
+ document + + DomDocument + + 需要加载资源文件的文档对象 +
+ options + + KeyValueMap + + 加载资源文件的属性集合, 该集合支持的值是script标签和style标签支持的所有属性。 +
+ fn + + Function + + 资源文件加载成功之后执行的回调 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
+6
+7
+8
 UE.utils.loadFile( document, {
+     src:"test.js",
+     tag:"script",
+     type:"text/javascript",
+     defer:"defer"
+ }, function () {
+     console.log('加载成功');
+ } );
+
+
+
+ +
+ + +
+
+
+

isEmptyObject(* obj)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 判断obj对象是否为空 +
+ + + + +
    +
  • + 提示: 如果判断的对象是NULL, 将直接返回true, 如果是数组且为空, 返回true, 如果是字符串, 且字符串为空, + 返回true, 如果是普通对象, 且该对象没有任何实例属性, 返回true +
  • +
+ + + + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ obj + + * + + 需要判断的对象 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 对象是否为空 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+16
+17
 //output: true
+ console.log( UE.utils.isEmptyObject( {} ) );
+
+ //output: true
+ console.log( UE.utils.isEmptyObject( [] ) );
+
+ //output: true
+ console.log( UE.utils.isEmptyObject( "" ) );
+
+ //output: false
+ console.log( UE.utils.isEmptyObject( { key: 1 } ) );
+
+ //output: false
+ console.log( UE.utils.isEmptyObject( [1] ) );
+
+ //output: false
+ console.log( UE.utils.isEmptyObject( "1" ) );
+
+
+
+ +
+ + +
+
+
+

transUnitToPx()

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 把cm/pt为单位的值转换为px为单位的值 +
+ + + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + +
参数名类型描述
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ String + + 转换为px为计量单位的值的字符串 +
+
+ + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
 //output: 500px
+ console.log( UE.utils.transUnitToPx( '20cm' ) );
+
+ //output: 27px
+ console.log( UE.utils.transUnitToPx( '20pt' ) );
+
+
+
+ +
+ + +
+
+
+

domReady(Function fn)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 在dom树ready之后执行给定的回调函数 +
+ + + + +
    +
  • + 提示: 如果在执行该方法的时候, dom树已经ready, 那么回调函数将立刻执行 +
  • +
+ + + + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ fn + + Function + + dom树ready之后的回调函数 +
+
+ + + + + + + + + 示例 + +
+ +
+ javascript代码: +
+ +
1
+2
+3
+4
+5
 UE.utils.domReady( function () {
+
+     console.log('123');
+
+ } );
+
+
+
+ +
+ + +
+
+
+

isString(* object)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 判断给定的对象是否是字符串 +
+ + + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ object + + * + + 需要判断的对象 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 给定的对象是否是字符串 +
+
+ + + + +
+
+
+

isArray(* object)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 判断给定的对象是否是数组 +
+ + + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ object + + * + + 需要判断的对象 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 给定的对象是否是数组 +
+
+ + + + +
+
+
+

isFunction(* object)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 判断给定的对象是否是一个Function +
+ + + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ object + + * + + 需要判断的对象 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 给定的对象是否是Function +
+
+ + + + +
+
+
+

isNumber(* object)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 判断给定的对象是否是Number +
+ + + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ object + + * + + 需要判断的对象 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 给定的对象是否是Number +
+
+ + + + +
+
+
+

isRegExp(* object)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 判断给定的对象是否是一个正则表达式 +
+ + + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ object + + * + + 需要判断的对象 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 给定的对象是否是正则表达式 +
+
+ + + + +
+
+
+

isObject(* object)

+
+ 方法 + + 静态 + +
+ + + 1.2.6.1 + + +
+ +
+ +
+ 判断给定的对象是否是一个普通对象 +
+ + + + + +
+
+ 所属模块: UE.utils +
+ +
+ +
+ +
+ + + + + + + 参数列表 + + + + + + + + + + + + + + + + + +
参数名类型描述
+ object + + * + + 需要判断的对象 +
+
+ + + + + + + 返回值 + + + + + + + + + + + + + +
类型描述
+ Boolean + + 给定的对象是否是普通对象 +
+
+ + + + +
+
+ + + +
+ +
+ + +
+ +
+ +
+ +
+
+

辅助接口

+
+ +
+ +
+ 该接口包提供的接口,大多数都是本地原生接口,这里只是把这些接口归纳起来以方便大家查看; + 对于另一些接口,是对一些概念的抽象,比如:KeyValueMap,实际的代码中并不存在这样的接口。 +
+ +
+ +
+
+ + + +
+

String

+
+ 辅助接口 +
+
+
+ 原生String对象, 字符串 +
+
+
+ + +
+

Function

+
+ 辅助接口 +
+
+
+ 原生Function对象, 函数 +
+
+
+ + +
+

Object

+
+ 辅助接口 +
+
+
+ 原生Object对象, 普通对象 +
+
+
+ + +
+

Boolean

+
+ 辅助接口 +
+
+
+ 原生Boolean对象, 布尔值 +
+
+
+ + +
+

Number

+
+ 辅助接口 +
+
+
+ 原生Number对象, 数值 +
+
+
+ + +
+

NULL

+
+ 辅助接口 +
+
+
+ 原生NULL对象, 空 +
+
+
+ + +
+

Array

+
+ 辅助接口 +
+
+
+ 原生Array对象, 数组 +
+
+
+ + +
+

Node

+
+ 辅助接口 +
+
+
+ 浏览器DOMNode, dom节点 +
+
+
+ + +
+

Element

+
+ 辅助接口 +
+
+
+ 浏览器DOMElement, dom元素 +
+
+
+ + +
+
+ +
+
+ + + + + Ctrl + Q 可以打开搜索框 + + \ No newline at end of file diff --git a/docs/images/bg.png b/docs/images/bg.png new file mode 100644 index 000000000..90ee6934d Binary files /dev/null and b/docs/images/bg.png differ diff --git a/docs/images/up.png b/docs/images/up.png new file mode 100644 index 000000000..681e3d6da Binary files /dev/null and b/docs/images/up.png differ diff --git a/docs/scripts/autocomplete.js b/docs/scripts/autocomplete.js new file mode 100644 index 000000000..3b4aea7b3 --- /dev/null +++ b/docs/scripts/autocomplete.js @@ -0,0 +1,321 @@ +/** + * AutoComplete组件 + */ + +( function () { + + 'use strict'; + + //匹配结果最大条数 + var MAX_COUNT = 11; + + var Util = { + + hasChange: function ( newInput, oldInput ) { + return !(newInput === oldInput); + }, + + /** + * 根据提供的source文本数组获取匹配searchtext的集合 + */ + getMatchText: function ( searchText, source ) { + + var result = [], + searchText = searchText.toLowerCase(); + + if ( searchText === "" ) { + return result; + } + + $.each( source, function ( index, item ) { + + if ( result.length >= MAX_COUNT ) { + return false; + } + + if ( item.toLowerCase().indexOf( searchText ) !== -1 ) { + + result.push( item ); + + } + + } ); + + return result; + + }, + + escapeRegexp: function ( input ) { + + return input.replace( /[\.\\\/\*\?\+\[\(\)\]\{\}\^\$\|]/g, function ( match ) { + return '\\' + match; + } ); + + } + + }; + + function AutoComplete () { + this.panel = new Panel(); + this.source = null; + + this._lastInput = ""; + this._inputBox = null; + this._selectIndex = -1; + this._matchCount = 0; + this._inputValue = ""; + } + + $.extend( AutoComplete.prototype, { + + setSource: function ( source ) { + this.source = source; + }, + + bindInput: function ( inputBox ) { + + var _self = this, + $inputBox = $( inputBox ); + + this._inputBox = $inputBox; + this.panel.bind( $inputBox ); + + this.panel.onselect( function ( index, title ) { + + _self.to( title ); + + } ); + + $inputBox.on( "oninput" in document.body ? "input" : "keyup", function ( evt ) { + + _self._inputValue = this.value; + + if ( !Util.hasChange( _self._inputValue, _self._lastInput ) ) { + return ; + } + + _self._lastInput = _self._inputValue; + + _self.search( _self._inputValue ); + + } ).on( "click", function () { + + return false; + + } ).on( "keydown", function ( evt ) { + + if ( ( evt.ctrlKey && evt.keyCode === 81 ) || evt.keyCode === 27 ) { + $( document ).trigger( 'togglepanel' ); + return false; + } + + if ( evt.keyCode === 13 ) { + + _self.to( this.value ); + return; + + } + + if ( !_self.panel.showState ) { + return; + } + + //down + if ( evt.keyCode === 40 ) { + + _self._selectIndex = ++_self._selectIndex; + + //up + } else if ( evt.keyCode === 38 ) { + + _self._selectIndex = _self._selectIndex === -1 ? + _self._selectIndex + _self._matchCount : _self._selectIndex - 1; + + //do search + } else { + return; + } + + _self.select( _self._selectIndex ); + + return false; + + } ); + + }, + + select: function ( index ) { + + this.panel.change( index ); + + //设置搜索框值 + if ( index > -1 && index < this._matchCount ) { + this._inputBox.val( this.panel.getTitle( index ) ); + } else { + this._inputBox.val( this._inputValue ); + this._selectIndex = -1; + } + + }, + + search: function ( searchText ) { + + this.render( searchText, Util.getMatchText( searchText, this.source ) ); + + }, + + to: function ( anchor ) { + anchor && ( location.hash = anchor ); + this.clear(); + this._inputBox.trigger( "close" ); + }, + + render: function ( searchText, items ) { + + this._matchCount = items.length; + this.panel.render( this._getItemHtml( searchText, items ) ).show(); + + }, + + hide: function () { + + this.panel.hide(); + + this._lastInput = ""; + this._selectIndex = -1; + this._matchCount = 0; + + }, + + clear: function () { + this.hide(); + this.panel.clear(); + + this._inputValue = ""; + }, + + _getItemHtml: function ( searchText, items ) { + + var htmlStr = [], + pattern = new RegExp( Util.escapeRegexp( searchText ), 'i' ); + + if ( !items.length ) { + return '
  • 未找到匹配的内容
'; + } + + $.each( items, function ( index, item ) { + + htmlStr.push( '' + item.replace( pattern, function ( match ) { + + return '' + match + ''; + + } ) + '' ); + + } ); + + return '
  • '+ htmlStr.join( '
  • ' ) +'
'; + + } + + } ); + + function Panel () { + + this.showState = false; + + this._input = null; + this._panel = $( '
' ); + this._callbacks = []; + + this.selectStyle = "background: #f0f0f0"; + + } + + $.extend( Panel.prototype, { + + bind: function ( $inputBox ) { + + var _self = this; + + this._input = $inputBox; + + $inputBox.parent().append( this._panel ); + + this._panel.delegate( ".search-result-item", "click", function () { + + var $this = $( this ), + selectIndex = $this.attr( "data-index" ), + title = $this.text(); + + $.each( _self._callbacks, function ( index, callback ) { + + callback( selectIndex, title ); + + } ); + + _self.hide(); + + return false; + + } ); + + return this; + + }, + + render: function ( htmlStr ) { + + this._panel.html( htmlStr ); + + return this; + + }, + + clear: function () { + this._panel.html( "" ); + this._input.val( "" ); + }, + + change: function ( itemIndex ) { + var $items = this._panel.find( ".search-result-item" ).css( "background", "" ); + $items[ itemIndex ] && ( $items[ itemIndex ].style.cssText = this.selectStyle ); + }, + + onselect: function ( callback ) { + + this._callbacks.push( callback ); + + }, + + getTitle: function ( itemIndex ) { + return $( this._panel.find( ".search-result-item" )[ itemIndex ] ).text(); + }, + + show: function () { + + this.showState = true; + + this._panel.css( { + width: this._input.outerWidth(), + top: this._input.position().top + this._input.innerHeight(), + left: this._input.position().left + } ); + + this._panel.show(); + + }, + + hide: function () { + + this.showState = false; + this._panel.hide(); + + return this; + + } + + } ); + + window.AutoComplete = AutoComplete; + +} )(); \ No newline at end of file diff --git a/docs/scripts/jquery-1.10.2.js b/docs/scripts/jquery-1.10.2.js new file mode 100644 index 000000000..c5c648255 --- /dev/null +++ b/docs/scripts/jquery-1.10.2.js @@ -0,0 +1,9789 @@ +/*! + * jQuery JavaScript Library v1.10.2 + * http://jquery.com/ + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * + * Copyright 2005, 2013 jQuery Foundation, Inc. and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: 2013-07-03T13:48Z + */ +(function( window, undefined ) { + +// Can't do this because several apps including ASP.NET trace +// the stack via arguments.caller.callee and Firefox dies if +// you try to trace through "use strict" call chains. (#13335) +// Support: Firefox 18+ +//"use strict"; +var + // The deferred used on DOM ready + readyList, + + // A central reference to the root jQuery(document) + rootjQuery, + + // Support: IE<10 + // For `typeof xmlNode.method` instead of `xmlNode.method !== undefined` + core_strundefined = typeof undefined, + + // Use the correct document accordingly with window argument (sandbox) + location = window.location, + document = window.document, + docElem = document.documentElement, + + // Map over jQuery in case of overwrite + _jQuery = window.jQuery, + + // Map over the $ in case of overwrite + _$ = window.$, + + // [[Class]] -> type pairs + class2type = {}, + + // List of deleted data cache ids, so we can reuse them + core_deletedIds = [], + + core_version = "1.10.2", + + // Save a reference to some core methods + core_concat = core_deletedIds.concat, + core_push = core_deletedIds.push, + core_slice = core_deletedIds.slice, + core_indexOf = core_deletedIds.indexOf, + core_toString = class2type.toString, + core_hasOwn = class2type.hasOwnProperty, + core_trim = core_version.trim, + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + // The jQuery object is actually just the init constructor 'enhanced' + return new jQuery.fn.init( selector, context, rootjQuery ); + }, + + // Used for matching numbers + core_pnum = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source, + + // Used for splitting on whitespace + core_rnotwhite = /\S+/g, + + // Make sure we trim BOM and NBSP (here's looking at you, Safari 5.0 and IE) + rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, + + // A simple way to check for HTML strings + // Prioritize #id over to avoid XSS via location.hash (#9521) + // Strict HTML recognition (#11290: must start with <) + rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/, + + // Match a standalone tag + rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>|)$/, + + // JSON RegExp + rvalidchars = /^[\],:{}\s]*$/, + rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g, + rvalidescape = /\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g, + rvalidtokens = /"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g, + + // Matches dashed string for camelizing + rmsPrefix = /^-ms-/, + rdashAlpha = /-([\da-z])/gi, + + // Used by jQuery.camelCase as callback to replace() + fcamelCase = function( all, letter ) { + return letter.toUpperCase(); + }, + + // The ready event handler + completed = function( event ) { + + // readyState === "complete" is good enough for us to call the dom ready in oldIE + if ( document.addEventListener || event.type === "load" || document.readyState === "complete" ) { + detach(); + jQuery.ready(); + } + }, + // Clean-up method for dom ready events + detach = function() { + if ( document.addEventListener ) { + document.removeEventListener( "DOMContentLoaded", completed, false ); + window.removeEventListener( "load", completed, false ); + + } else { + document.detachEvent( "onreadystatechange", completed ); + window.detachEvent( "onload", completed ); + } + }; + +jQuery.fn = jQuery.prototype = { + // The current version of jQuery being used + jquery: core_version, + + constructor: jQuery, + init: function( selector, context, rootjQuery ) { + var match, elem; + + // HANDLE: $(""), $(null), $(undefined), $(false) + if ( !selector ) { + return this; + } + + // Handle HTML strings + if ( typeof selector === "string" ) { + if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) { + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = rquickExpr.exec( selector ); + } + + // Match html or make sure no context is specified for #id + if ( match && (match[1] || !context) ) { + + // HANDLE: $(html) -> $(array) + if ( match[1] ) { + context = context instanceof jQuery ? context[0] : context; + + // scripts is true for back-compat + jQuery.merge( this, jQuery.parseHTML( + match[1], + context && context.nodeType ? context.ownerDocument || context : document, + true + ) ); + + // HANDLE: $(html, props) + if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) { + for ( match in context ) { + // Properties of context are called as methods if possible + if ( jQuery.isFunction( this[ match ] ) ) { + this[ match ]( context[ match ] ); + + // ...and otherwise set as attributes + } else { + this.attr( match, context[ match ] ); + } + } + } + + return this; + + // HANDLE: $(#id) + } else { + elem = document.getElementById( match[2] ); + + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + if ( elem && elem.parentNode ) { + // Handle the case where IE and Opera return items + // by name instead of ID + if ( elem.id !== match[2] ) { + return rootjQuery.find( selector ); + } + + // Otherwise, we inject the element directly into the jQuery object + this.length = 1; + this[0] = elem; + } + + this.context = document; + this.selector = selector; + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || rootjQuery ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(DOMElement) + } else if ( selector.nodeType ) { + this.context = this[0] = selector; + this.length = 1; + return this; + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( jQuery.isFunction( selector ) ) { + return rootjQuery.ready( selector ); + } + + if ( selector.selector !== undefined ) { + this.selector = selector.selector; + this.context = selector.context; + } + + return jQuery.makeArray( selector, this ); + }, + + // Start with an empty selector + selector: "", + + // The default length of a jQuery object is 0 + length: 0, + + toArray: function() { + return core_slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + return num == null ? + + // Return a 'clean' array + this.toArray() : + + // Return just the object + ( num < 0 ? this[ this.length + num ] : this[ num ] ); + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + ret.context = this.context; + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + // (You can seed the arguments with an array of args, but this is + // only used internally.) + each: function( callback, args ) { + return jQuery.each( this, callback, args ); + }, + + ready: function( fn ) { + // Add the callback + jQuery.ready.promise().done( fn ); + + return this; + }, + + slice: function() { + return this.pushStack( core_slice.apply( this, arguments ) ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + eq: function( i ) { + var len = this.length, + j = +i + ( i < 0 ? len : 0 ); + return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map(this, function( elem, i ) { + return callback.call( elem, i, elem ); + })); + }, + + end: function() { + return this.prevObject || this.constructor(null); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: core_push, + sort: [].sort, + splice: [].splice +}; + +// Give the init function the jQuery prototype for later instantiation +jQuery.fn.init.prototype = jQuery.fn; + +jQuery.extend = jQuery.fn.extend = function() { + var src, copyIsArray, copy, name, options, clone, + target = arguments[0] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + target = arguments[1] || {}; + // skip the boolean and the target + i = 2; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !jQuery.isFunction(target) ) { + target = {}; + } + + // extend jQuery itself if only one argument is passed + if ( length === i ) { + target = this; + --i; + } + + for ( ; i < length; i++ ) { + // Only deal with non-null/undefined values + if ( (options = arguments[ i ]) != null ) { + // Extend the base object + for ( name in options ) { + src = target[ name ]; + copy = options[ name ]; + + // Prevent never-ending loop + if ( target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { + if ( copyIsArray ) { + copyIsArray = false; + clone = src && jQuery.isArray(src) ? src : []; + + } else { + clone = src && jQuery.isPlainObject(src) ? src : {}; + } + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend({ + // Unique for each copy of jQuery on the page + // Non-digits removed to match rinlinejQuery + expando: "jQuery" + ( core_version + Math.random() ).replace( /\D/g, "" ), + + noConflict: function( deep ) { + if ( window.$ === jQuery ) { + window.$ = _$; + } + + if ( deep && window.jQuery === jQuery ) { + window.jQuery = _jQuery; + } + + return jQuery; + }, + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Hold (or release) the ready event + holdReady: function( hold ) { + if ( hold ) { + jQuery.readyWait++; + } else { + jQuery.ready( true ); + } + }, + + // Handle when the DOM is ready + ready: function( wait ) { + + // Abort if there are pending holds or we're already ready + if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { + return; + } + + // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). + if ( !document.body ) { + return setTimeout( jQuery.ready ); + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document, [ jQuery ] ); + + // Trigger any bound ready events + if ( jQuery.fn.trigger ) { + jQuery( document ).trigger("ready").off("ready"); + } + }, + + // See test/unit/core.js for details concerning isFunction. + // Since version 1.3, DOM methods and functions like alert + // aren't supported. They return false on IE (#2968). + isFunction: function( obj ) { + return jQuery.type(obj) === "function"; + }, + + isArray: Array.isArray || function( obj ) { + return jQuery.type(obj) === "array"; + }, + + isWindow: function( obj ) { + /* jshint eqeqeq: false */ + return obj != null && obj == obj.window; + }, + + isNumeric: function( obj ) { + return !isNaN( parseFloat(obj) ) && isFinite( obj ); + }, + + type: function( obj ) { + if ( obj == null ) { + return String( obj ); + } + return typeof obj === "object" || typeof obj === "function" ? + class2type[ core_toString.call(obj) ] || "object" : + typeof obj; + }, + + isPlainObject: function( obj ) { + var key; + + // Must be an Object. + // Because of IE, we also have to check the presence of the constructor property. + // Make sure that DOM nodes and window objects don't pass through, as well + if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { + return false; + } + + try { + // Not own constructor property must be Object + if ( obj.constructor && + !core_hasOwn.call(obj, "constructor") && + !core_hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) { + return false; + } + } catch ( e ) { + // IE8,9 Will throw exceptions on certain host objects #9897 + return false; + } + + // Support: IE<9 + // Handle iteration over inherited properties before own properties. + if ( jQuery.support.ownLast ) { + for ( key in obj ) { + return core_hasOwn.call( obj, key ); + } + } + + // Own properties are enumerated firstly, so to speed up, + // if last one is own, then all properties are own. + for ( key in obj ) {} + + return key === undefined || core_hasOwn.call( obj, key ); + }, + + isEmptyObject: function( obj ) { + var name; + for ( name in obj ) { + return false; + } + return true; + }, + + error: function( msg ) { + throw new Error( msg ); + }, + + // data: string of html + // context (optional): If specified, the fragment will be created in this context, defaults to document + // keepScripts (optional): If true, will include scripts passed in the html string + parseHTML: function( data, context, keepScripts ) { + if ( !data || typeof data !== "string" ) { + return null; + } + if ( typeof context === "boolean" ) { + keepScripts = context; + context = false; + } + context = context || document; + + var parsed = rsingleTag.exec( data ), + scripts = !keepScripts && []; + + // Single tag + if ( parsed ) { + return [ context.createElement( parsed[1] ) ]; + } + + parsed = jQuery.buildFragment( [ data ], context, scripts ); + if ( scripts ) { + jQuery( scripts ).remove(); + } + return jQuery.merge( [], parsed.childNodes ); + }, + + parseJSON: function( data ) { + // Attempt to parse using the native JSON parser first + if ( window.JSON && window.JSON.parse ) { + return window.JSON.parse( data ); + } + + if ( data === null ) { + return data; + } + + if ( typeof data === "string" ) { + + // Make sure leading/trailing whitespace is removed (IE can't handle it) + data = jQuery.trim( data ); + + if ( data ) { + // Make sure the incoming data is actual JSON + // Logic borrowed from http://json.org/json2.js + if ( rvalidchars.test( data.replace( rvalidescape, "@" ) + .replace( rvalidtokens, "]" ) + .replace( rvalidbraces, "")) ) { + + return ( new Function( "return " + data ) )(); + } + } + } + + jQuery.error( "Invalid JSON: " + data ); + }, + + // Cross-browser xml parsing + parseXML: function( data ) { + var xml, tmp; + if ( !data || typeof data !== "string" ) { + return null; + } + try { + if ( window.DOMParser ) { // Standard + tmp = new DOMParser(); + xml = tmp.parseFromString( data , "text/xml" ); + } else { // IE + xml = new ActiveXObject( "Microsoft.XMLDOM" ); + xml.async = "false"; + xml.loadXML( data ); + } + } catch( e ) { + xml = undefined; + } + if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) { + jQuery.error( "Invalid XML: " + data ); + } + return xml; + }, + + noop: function() {}, + + // Evaluates a script in a global context + // Workarounds based on findings by Jim Driscoll + // http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context + globalEval: function( data ) { + if ( data && jQuery.trim( data ) ) { + // We use execScript on Internet Explorer + // We use an anonymous function so that context is window + // rather than jQuery in Firefox + ( window.execScript || function( data ) { + window[ "eval" ].call( window, data ); + } )( data ); + } + }, + + // Convert dashed to camelCase; used by the css and data modules + // Microsoft forgot to hump their vendor prefix (#9572) + camelCase: function( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); + }, + + nodeName: function( elem, name ) { + return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); + }, + + // args is for internal usage only + each: function( obj, callback, args ) { + var value, + i = 0, + length = obj.length, + isArray = isArraylike( obj ); + + if ( args ) { + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback.apply( obj[ i ], args ); + + if ( value === false ) { + break; + } + } + } else { + for ( i in obj ) { + value = callback.apply( obj[ i ], args ); + + if ( value === false ) { + break; + } + } + } + + // A special, fast, case for the most common use of each + } else { + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback.call( obj[ i ], i, obj[ i ] ); + + if ( value === false ) { + break; + } + } + } else { + for ( i in obj ) { + value = callback.call( obj[ i ], i, obj[ i ] ); + + if ( value === false ) { + break; + } + } + } + } + + return obj; + }, + + // Use native String.trim function wherever possible + trim: core_trim && !core_trim.call("\uFEFF\xA0") ? + function( text ) { + return text == null ? + "" : + core_trim.call( text ); + } : + + // Otherwise use our own trimming functionality + function( text ) { + return text == null ? + "" : + ( text + "" ).replace( rtrim, "" ); + }, + + // results is for internal usage only + makeArray: function( arr, results ) { + var ret = results || []; + + if ( arr != null ) { + if ( isArraylike( Object(arr) ) ) { + jQuery.merge( ret, + typeof arr === "string" ? + [ arr ] : arr + ); + } else { + core_push.call( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + var len; + + if ( arr ) { + if ( core_indexOf ) { + return core_indexOf.call( arr, elem, i ); + } + + len = arr.length; + i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0; + + for ( ; i < len; i++ ) { + // Skip accessing in sparse arrays + if ( i in arr && arr[ i ] === elem ) { + return i; + } + } + } + + return -1; + }, + + merge: function( first, second ) { + var l = second.length, + i = first.length, + j = 0; + + if ( typeof l === "number" ) { + for ( ; j < l; j++ ) { + first[ i++ ] = second[ j ]; + } + } else { + while ( second[j] !== undefined ) { + first[ i++ ] = second[ j++ ]; + } + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, inv ) { + var retVal, + ret = [], + i = 0, + length = elems.length; + inv = !!inv; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + retVal = !!callback( elems[ i ], i ); + if ( inv !== retVal ) { + ret.push( elems[ i ] ); + } + } + + return ret; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var value, + i = 0, + length = elems.length, + isArray = isArraylike( elems ), + ret = []; + + // Go through the array, translating each of the items to their + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret[ ret.length ] = value; + } + } + + // Go through every key on the object, + } else { + for ( i in elems ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret[ ret.length ] = value; + } + } + } + + // Flatten any nested arrays + return core_concat.apply( [], ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // Bind a function to a context, optionally partially applying any + // arguments. + proxy: function( fn, context ) { + var args, proxy, tmp; + + if ( typeof context === "string" ) { + tmp = fn[ context ]; + context = fn; + fn = tmp; + } + + // Quick check to determine if target is callable, in the spec + // this throws a TypeError, but we will just return undefined. + if ( !jQuery.isFunction( fn ) ) { + return undefined; + } + + // Simulated bind + args = core_slice.call( arguments, 2 ); + proxy = function() { + return fn.apply( context || this, args.concat( core_slice.call( arguments ) ) ); + }; + + // Set the guid of unique handler to the same of original handler, so it can be removed + proxy.guid = fn.guid = fn.guid || jQuery.guid++; + + return proxy; + }, + + // Multifunctional method to get and set values of a collection + // The value/s can optionally be executed if it's a function + access: function( elems, fn, key, value, chainable, emptyGet, raw ) { + var i = 0, + length = elems.length, + bulk = key == null; + + // Sets many values + if ( jQuery.type( key ) === "object" ) { + chainable = true; + for ( i in key ) { + jQuery.access( elems, fn, i, key[i], true, emptyGet, raw ); + } + + // Sets one value + } else if ( value !== undefined ) { + chainable = true; + + if ( !jQuery.isFunction( value ) ) { + raw = true; + } + + if ( bulk ) { + // Bulk operations run against the entire set + if ( raw ) { + fn.call( elems, value ); + fn = null; + + // ...except when executing function values + } else { + bulk = fn; + fn = function( elem, key, value ) { + return bulk.call( jQuery( elem ), value ); + }; + } + } + + if ( fn ) { + for ( ; i < length; i++ ) { + fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) ); + } + } + } + + return chainable ? + elems : + + // Gets + bulk ? + fn.call( elems ) : + length ? fn( elems[0], key ) : emptyGet; + }, + + now: function() { + return ( new Date() ).getTime(); + }, + + // A method for quickly swapping in/out CSS properties to get correct calculations. + // Note: this method belongs to the css module but it's needed here for the support module. + // If support gets modularized, this method should be moved back to the css module. + swap: function( elem, options, callback, args ) { + var ret, name, + old = {}; + + // Remember the old values, and insert the new ones + for ( name in options ) { + old[ name ] = elem.style[ name ]; + elem.style[ name ] = options[ name ]; + } + + ret = callback.apply( elem, args || [] ); + + // Revert the old values + for ( name in options ) { + elem.style[ name ] = old[ name ]; + } + + return ret; + } +}); + +jQuery.ready.promise = function( obj ) { + if ( !readyList ) { + + readyList = jQuery.Deferred(); + + // Catch cases where $(document).ready() is called after the browser event has already occurred. + // we once tried to use readyState "interactive" here, but it caused issues like the one + // discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15 + if ( document.readyState === "complete" ) { + // Handle it asynchronously to allow scripts the opportunity to delay ready + setTimeout( jQuery.ready ); + + // Standards-based browsers support DOMContentLoaded + } else if ( document.addEventListener ) { + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", completed, false ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", completed, false ); + + // If IE event model is used + } else { + // Ensure firing before onload, maybe late but safe also for iframes + document.attachEvent( "onreadystatechange", completed ); + + // A fallback to window.onload, that will always work + window.attachEvent( "onload", completed ); + + // If IE and not a frame + // continually check to see if the document is ready + var top = false; + + try { + top = window.frameElement == null && document.documentElement; + } catch(e) {} + + if ( top && top.doScroll ) { + (function doScrollCheck() { + if ( !jQuery.isReady ) { + + try { + // Use the trick by Diego Perini + // http://javascript.nwbox.com/IEContentLoaded/ + top.doScroll("left"); + } catch(e) { + return setTimeout( doScrollCheck, 50 ); + } + + // detach all dom ready events + detach(); + + // and execute any waiting functions + jQuery.ready(); + } + })(); + } + } + } + return readyList.promise( obj ); +}; + +// Populate the class2type map +jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); +}); + +function isArraylike( obj ) { + var length = obj.length, + type = jQuery.type( obj ); + + if ( jQuery.isWindow( obj ) ) { + return false; + } + + if ( obj.nodeType === 1 && length ) { + return true; + } + + return type === "array" || type !== "function" && + ( length === 0 || + typeof length === "number" && length > 0 && ( length - 1 ) in obj ); +} + +// All jQuery objects should point back to these +rootjQuery = jQuery(document); +/*! + * Sizzle CSS Selector Engine v1.10.2 + * http://sizzlejs.com/ + * + * Copyright 2013 jQuery Foundation, Inc. and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: 2013-07-03 + */ +(function( window, undefined ) { + +var i, + support, + cachedruns, + Expr, + getText, + isXML, + compile, + outermostContext, + sortInput, + + // Local document vars + setDocument, + document, + docElem, + documentIsHTML, + rbuggyQSA, + rbuggyMatches, + matches, + contains, + + // Instance-specific data + expando = "sizzle" + -(new Date()), + preferredDoc = window.document, + dirruns = 0, + done = 0, + classCache = createCache(), + tokenCache = createCache(), + compilerCache = createCache(), + hasDuplicate = false, + sortOrder = function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + return 0; + } + return 0; + }, + + // General-purpose constants + strundefined = typeof undefined, + MAX_NEGATIVE = 1 << 31, + + // Instance methods + hasOwn = ({}).hasOwnProperty, + arr = [], + pop = arr.pop, + push_native = arr.push, + push = arr.push, + slice = arr.slice, + // Use a stripped-down indexOf if we can't use a native one + indexOf = arr.indexOf || function( elem ) { + var i = 0, + len = this.length; + for ( ; i < len; i++ ) { + if ( this[i] === elem ) { + return i; + } + } + return -1; + }, + + booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", + + // Regular expressions + + // Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace + whitespace = "[\\x20\\t\\r\\n\\f]", + // http://www.w3.org/TR/css3-syntax/#characters + characterEncoding = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+", + + // Loosely modeled on CSS identifier characters + // An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors + // Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier + identifier = characterEncoding.replace( "w", "w#" ), + + // Acceptable operators http://www.w3.org/TR/selectors/#attribute-selectors + attributes = "\\[" + whitespace + "*(" + characterEncoding + ")" + whitespace + + "*(?:([*^$|!~]?=)" + whitespace + "*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|(" + identifier + ")|)|)" + whitespace + "*\\]", + + // Prefer arguments quoted, + // then not containing pseudos/brackets, + // then attribute selectors/non-parenthetical expressions, + // then anything else + // These preferences are here to reduce the number of selectors + // needing tokenize in the PSEUDO preFilter + pseudos = ":(" + characterEncoding + ")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|" + attributes.replace( 3, 8 ) + ")*)|.*)\\)|)", + + // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter + rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), + + rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), + rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ), + + rsibling = new RegExp( whitespace + "*[+~]" ), + rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*)" + whitespace + "*\\]", "g" ), + + rpseudo = new RegExp( pseudos ), + ridentifier = new RegExp( "^" + identifier + "$" ), + + matchExpr = { + "ID": new RegExp( "^#(" + characterEncoding + ")" ), + "CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ), + "TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ), + "ATTR": new RegExp( "^" + attributes ), + "PSEUDO": new RegExp( "^" + pseudos ), + "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), + "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), + // For use in libraries implementing .is() + // We use this for POS matching in `select` + "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + + whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) + }, + + rnative = /^[^{]+\{\s*\[native \w/, + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, + + rinputs = /^(?:input|select|textarea|button)$/i, + rheader = /^h\d$/i, + + rescape = /'|\\/g, + + // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters + runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ), + funescape = function( _, escaped, escapedWhitespace ) { + var high = "0x" + escaped - 0x10000; + // NaN means non-codepoint + // Support: Firefox + // Workaround erroneous numeric interpretation of +"0x" + return high !== high || escapedWhitespace ? + escaped : + // BMP codepoint + high < 0 ? + String.fromCharCode( high + 0x10000 ) : + // Supplemental Plane codepoint (surrogate pair) + String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); + }; + +// Optimize for push.apply( _, NodeList ) +try { + push.apply( + (arr = slice.call( preferredDoc.childNodes )), + preferredDoc.childNodes + ); + // Support: Android<4.0 + // Detect silently failing push.apply + arr[ preferredDoc.childNodes.length ].nodeType; +} catch ( e ) { + push = { apply: arr.length ? + + // Leverage slice if possible + function( target, els ) { + push_native.apply( target, slice.call(els) ); + } : + + // Support: IE<9 + // Otherwise append directly + function( target, els ) { + var j = target.length, + i = 0; + // Can't trust NodeList.length + while ( (target[j++] = els[i++]) ) {} + target.length = j - 1; + } + }; +} + +function Sizzle( selector, context, results, seed ) { + var match, elem, m, nodeType, + // QSA vars + i, groups, old, nid, newContext, newSelector; + + if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { + setDocument( context ); + } + + context = context || document; + results = results || []; + + if ( !selector || typeof selector !== "string" ) { + return results; + } + + if ( (nodeType = context.nodeType) !== 1 && nodeType !== 9 ) { + return []; + } + + if ( documentIsHTML && !seed ) { + + // Shortcuts + if ( (match = rquickExpr.exec( selector )) ) { + // Speed-up: Sizzle("#ID") + if ( (m = match[1]) ) { + if ( nodeType === 9 ) { + elem = context.getElementById( m ); + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + if ( elem && elem.parentNode ) { + // Handle the case where IE, Opera, and Webkit return items + // by name instead of ID + if ( elem.id === m ) { + results.push( elem ); + return results; + } + } else { + return results; + } + } else { + // Context is not a document + if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) && + contains( context, elem ) && elem.id === m ) { + results.push( elem ); + return results; + } + } + + // Speed-up: Sizzle("TAG") + } else if ( match[2] ) { + push.apply( results, context.getElementsByTagName( selector ) ); + return results; + + // Speed-up: Sizzle(".CLASS") + } else if ( (m = match[3]) && support.getElementsByClassName && context.getElementsByClassName ) { + push.apply( results, context.getElementsByClassName( m ) ); + return results; + } + } + + // QSA path + if ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) { + nid = old = expando; + newContext = context; + newSelector = nodeType === 9 && selector; + + // qSA works strangely on Element-rooted queries + // We can work around this by specifying an extra ID on the root + // and working up from there (Thanks to Andrew Dupont for the technique) + // IE 8 doesn't work on object elements + if ( nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { + groups = tokenize( selector ); + + if ( (old = context.getAttribute("id")) ) { + nid = old.replace( rescape, "\\$&" ); + } else { + context.setAttribute( "id", nid ); + } + nid = "[id='" + nid + "'] "; + + i = groups.length; + while ( i-- ) { + groups[i] = nid + toSelector( groups[i] ); + } + newContext = rsibling.test( selector ) && context.parentNode || context; + newSelector = groups.join(","); + } + + if ( newSelector ) { + try { + push.apply( results, + newContext.querySelectorAll( newSelector ) + ); + return results; + } catch(qsaError) { + } finally { + if ( !old ) { + context.removeAttribute("id"); + } + } + } + } + } + + // All others + return select( selector.replace( rtrim, "$1" ), context, results, seed ); +} + +/** + * Create key-value caches of limited size + * @returns {Function(string, Object)} Returns the Object data after storing it on itself with + * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) + * deleting the oldest entry + */ +function createCache() { + var keys = []; + + function cache( key, value ) { + // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) + if ( keys.push( key += " " ) > Expr.cacheLength ) { + // Only keep the most recent entries + delete cache[ keys.shift() ]; + } + return (cache[ key ] = value); + } + return cache; +} + +/** + * Mark a function for special use by Sizzle + * @param {Function} fn The function to mark + */ +function markFunction( fn ) { + fn[ expando ] = true; + return fn; +} + +/** + * Support testing using an element + * @param {Function} fn Passed the created div and expects a boolean result + */ +function assert( fn ) { + var div = document.createElement("div"); + + try { + return !!fn( div ); + } catch (e) { + return false; + } finally { + // Remove from its parent by default + if ( div.parentNode ) { + div.parentNode.removeChild( div ); + } + // release memory in IE + div = null; + } +} + +/** + * Adds the same handler for all of the specified attrs + * @param {String} attrs Pipe-separated list of attributes + * @param {Function} handler The method that will be applied + */ +function addHandle( attrs, handler ) { + var arr = attrs.split("|"), + i = attrs.length; + + while ( i-- ) { + Expr.attrHandle[ arr[i] ] = handler; + } +} + +/** + * Checks document order of two siblings + * @param {Element} a + * @param {Element} b + * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b + */ +function siblingCheck( a, b ) { + var cur = b && a, + diff = cur && a.nodeType === 1 && b.nodeType === 1 && + ( ~b.sourceIndex || MAX_NEGATIVE ) - + ( ~a.sourceIndex || MAX_NEGATIVE ); + + // Use IE sourceIndex if available on both nodes + if ( diff ) { + return diff; + } + + // Check if b follows a + if ( cur ) { + while ( (cur = cur.nextSibling) ) { + if ( cur === b ) { + return -1; + } + } + } + + return a ? 1 : -1; +} + +/** + * Returns a function to use in pseudos for input types + * @param {String} type + */ +function createInputPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for buttons + * @param {String} type + */ +function createButtonPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return (name === "input" || name === "button") && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for positionals + * @param {Function} fn + */ +function createPositionalPseudo( fn ) { + return markFunction(function( argument ) { + argument = +argument; + return markFunction(function( seed, matches ) { + var j, + matchIndexes = fn( [], seed.length, argument ), + i = matchIndexes.length; + + // Match elements found at the specified indexes + while ( i-- ) { + if ( seed[ (j = matchIndexes[i]) ] ) { + seed[j] = !(matches[j] = seed[j]); + } + } + }); + }); +} + +/** + * Detect xml + * @param {Element|Object} elem An element or a document + */ +isXML = Sizzle.isXML = function( elem ) { + // documentElement is verified for cases where it doesn't yet exist + // (such as loading iframes in IE - #4833) + var documentElement = elem && (elem.ownerDocument || elem).documentElement; + return documentElement ? documentElement.nodeName !== "HTML" : false; +}; + +// Expose support vars for convenience +support = Sizzle.support = {}; + +/** + * Sets document-related variables once based on the current document + * @param {Element|Object} [doc] An element or document object to use to set the document + * @returns {Object} Returns the current document + */ +setDocument = Sizzle.setDocument = function( node ) { + var doc = node ? node.ownerDocument || node : preferredDoc, + parent = doc.defaultView; + + // If no document and documentElement is available, return + if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { + return document; + } + + // Set our document + document = doc; + docElem = doc.documentElement; + + // Support tests + documentIsHTML = !isXML( doc ); + + // Support: IE>8 + // If iframe document is assigned to "document" variable and if iframe has been reloaded, + // IE will throw "permission denied" error when accessing "document" variable, see jQuery #13936 + // IE6-8 do not support the defaultView property so parent will be undefined + if ( parent && parent.attachEvent && parent !== parent.top ) { + parent.attachEvent( "onbeforeunload", function() { + setDocument(); + }); + } + + /* Attributes + ---------------------------------------------------------------------- */ + + // Support: IE<8 + // Verify that getAttribute really returns attributes and not properties (excepting IE8 booleans) + support.attributes = assert(function( div ) { + div.className = "i"; + return !div.getAttribute("className"); + }); + + /* getElement(s)By* + ---------------------------------------------------------------------- */ + + // Check if getElementsByTagName("*") returns only elements + support.getElementsByTagName = assert(function( div ) { + div.appendChild( doc.createComment("") ); + return !div.getElementsByTagName("*").length; + }); + + // Check if getElementsByClassName can be trusted + support.getElementsByClassName = assert(function( div ) { + div.innerHTML = "
"; + + // Support: Safari<4 + // Catch class over-caching + div.firstChild.className = "i"; + // Support: Opera<10 + // Catch gEBCN failure to find non-leading classes + return div.getElementsByClassName("i").length === 2; + }); + + // Support: IE<10 + // Check if getElementById returns elements by name + // The broken getElementById methods don't pick up programatically-set names, + // so use a roundabout getElementsByName test + support.getById = assert(function( div ) { + docElem.appendChild( div ).id = expando; + return !doc.getElementsByName || !doc.getElementsByName( expando ).length; + }); + + // ID find and filter + if ( support.getById ) { + Expr.find["ID"] = function( id, context ) { + if ( typeof context.getElementById !== strundefined && documentIsHTML ) { + var m = context.getElementById( id ); + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + return m && m.parentNode ? [m] : []; + } + }; + Expr.filter["ID"] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + return elem.getAttribute("id") === attrId; + }; + }; + } else { + // Support: IE6/7 + // getElementById is not reliable as a find shortcut + delete Expr.find["ID"]; + + Expr.filter["ID"] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + var node = typeof elem.getAttributeNode !== strundefined && elem.getAttributeNode("id"); + return node && node.value === attrId; + }; + }; + } + + // Tag + Expr.find["TAG"] = support.getElementsByTagName ? + function( tag, context ) { + if ( typeof context.getElementsByTagName !== strundefined ) { + return context.getElementsByTagName( tag ); + } + } : + function( tag, context ) { + var elem, + tmp = [], + i = 0, + results = context.getElementsByTagName( tag ); + + // Filter out possible comments + if ( tag === "*" ) { + while ( (elem = results[i++]) ) { + if ( elem.nodeType === 1 ) { + tmp.push( elem ); + } + } + + return tmp; + } + return results; + }; + + // Class + Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) { + if ( typeof context.getElementsByClassName !== strundefined && documentIsHTML ) { + return context.getElementsByClassName( className ); + } + }; + + /* QSA/matchesSelector + ---------------------------------------------------------------------- */ + + // QSA and matchesSelector support + + // matchesSelector(:active) reports false when true (IE9/Opera 11.5) + rbuggyMatches = []; + + // qSa(:focus) reports false when true (Chrome 21) + // We allow this because of a bug in IE8/9 that throws an error + // whenever `document.activeElement` is accessed on an iframe + // So, we allow :focus to pass through QSA all the time to avoid the IE error + // See http://bugs.jquery.com/ticket/13378 + rbuggyQSA = []; + + if ( (support.qsa = rnative.test( doc.querySelectorAll )) ) { + // Build QSA regex + // Regex strategy adopted from Diego Perini + assert(function( div ) { + // Select is set to empty string on purpose + // This is to test IE's treatment of not explicitly + // setting a boolean content attribute, + // since its presence should be enough + // http://bugs.jquery.com/ticket/12359 + div.innerHTML = ""; + + // Support: IE8 + // Boolean attributes and "value" are not treated correctly + if ( !div.querySelectorAll("[selected]").length ) { + rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); + } + + // Webkit/Opera - :checked should return selected option elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + // IE8 throws error here and will not see later tests + if ( !div.querySelectorAll(":checked").length ) { + rbuggyQSA.push(":checked"); + } + }); + + assert(function( div ) { + + // Support: Opera 10-12/IE8 + // ^= $= *= and empty values + // Should not select anything + // Support: Windows 8 Native Apps + // The type attribute is restricted during .innerHTML assignment + var input = doc.createElement("input"); + input.setAttribute( "type", "hidden" ); + div.appendChild( input ).setAttribute( "t", "" ); + + if ( div.querySelectorAll("[t^='']").length ) { + rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); + } + + // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) + // IE8 throws error here and will not see later tests + if ( !div.querySelectorAll(":enabled").length ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Opera 10-11 does not throw on post-comma invalid pseudos + div.querySelectorAll("*,:x"); + rbuggyQSA.push(",.*:"); + }); + } + + if ( (support.matchesSelector = rnative.test( (matches = docElem.webkitMatchesSelector || + docElem.mozMatchesSelector || + docElem.oMatchesSelector || + docElem.msMatchesSelector) )) ) { + + assert(function( div ) { + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9) + support.disconnectedMatch = matches.call( div, "div" ); + + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( div, "[s!='']:x" ); + rbuggyMatches.push( "!=", pseudos ); + }); + } + + rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") ); + rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") ); + + /* Contains + ---------------------------------------------------------------------- */ + + // Element contains another + // Purposefully does not implement inclusive descendent + // As in, an element does not contain itself + contains = rnative.test( docElem.contains ) || docElem.compareDocumentPosition ? + function( a, b ) { + var adown = a.nodeType === 9 ? a.documentElement : a, + bup = b && b.parentNode; + return a === bup || !!( bup && bup.nodeType === 1 && ( + adown.contains ? + adown.contains( bup ) : + a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 + )); + } : + function( a, b ) { + if ( b ) { + while ( (b = b.parentNode) ) { + if ( b === a ) { + return true; + } + } + } + return false; + }; + + /* Sorting + ---------------------------------------------------------------------- */ + + // Document order sorting + sortOrder = docElem.compareDocumentPosition ? + function( a, b ) { + + // Flag for duplicate removal + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + var compare = b.compareDocumentPosition && a.compareDocumentPosition && a.compareDocumentPosition( b ); + + if ( compare ) { + // Disconnected nodes + if ( compare & 1 || + (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) { + + // Choose the first element that is related to our preferred document + if ( a === doc || contains(preferredDoc, a) ) { + return -1; + } + if ( b === doc || contains(preferredDoc, b) ) { + return 1; + } + + // Maintain original order + return sortInput ? + ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) : + 0; + } + + return compare & 4 ? -1 : 1; + } + + // Not directly comparable, sort on existence of method + return a.compareDocumentPosition ? -1 : 1; + } : + function( a, b ) { + var cur, + i = 0, + aup = a.parentNode, + bup = b.parentNode, + ap = [ a ], + bp = [ b ]; + + // Exit early if the nodes are identical + if ( a === b ) { + hasDuplicate = true; + return 0; + + // Parentless nodes are either documents or disconnected + } else if ( !aup || !bup ) { + return a === doc ? -1 : + b === doc ? 1 : + aup ? -1 : + bup ? 1 : + sortInput ? + ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) : + 0; + + // If the nodes are siblings, we can do a quick check + } else if ( aup === bup ) { + return siblingCheck( a, b ); + } + + // Otherwise we need full lists of their ancestors for comparison + cur = a; + while ( (cur = cur.parentNode) ) { + ap.unshift( cur ); + } + cur = b; + while ( (cur = cur.parentNode) ) { + bp.unshift( cur ); + } + + // Walk down the tree looking for a discrepancy + while ( ap[i] === bp[i] ) { + i++; + } + + return i ? + // Do a sibling check if the nodes have a common ancestor + siblingCheck( ap[i], bp[i] ) : + + // Otherwise nodes in our document sort first + ap[i] === preferredDoc ? -1 : + bp[i] === preferredDoc ? 1 : + 0; + }; + + return doc; +}; + +Sizzle.matches = function( expr, elements ) { + return Sizzle( expr, null, null, elements ); +}; + +Sizzle.matchesSelector = function( elem, expr ) { + // Set document vars if needed + if ( ( elem.ownerDocument || elem ) !== document ) { + setDocument( elem ); + } + + // Make sure that attribute selectors are quoted + expr = expr.replace( rattributeQuotes, "='$1']" ); + + if ( support.matchesSelector && documentIsHTML && + ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && + ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { + + try { + var ret = matches.call( elem, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || support.disconnectedMatch || + // As well, disconnected nodes are said to be in a document + // fragment in IE 9 + elem.document && elem.document.nodeType !== 11 ) { + return ret; + } + } catch(e) {} + } + + return Sizzle( expr, document, null, [elem] ).length > 0; +}; + +Sizzle.contains = function( context, elem ) { + // Set document vars if needed + if ( ( context.ownerDocument || context ) !== document ) { + setDocument( context ); + } + return contains( context, elem ); +}; + +Sizzle.attr = function( elem, name ) { + // Set document vars if needed + if ( ( elem.ownerDocument || elem ) !== document ) { + setDocument( elem ); + } + + var fn = Expr.attrHandle[ name.toLowerCase() ], + // Don't get fooled by Object.prototype properties (jQuery #13807) + val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? + fn( elem, name, !documentIsHTML ) : + undefined; + + return val === undefined ? + support.attributes || !documentIsHTML ? + elem.getAttribute( name ) : + (val = elem.getAttributeNode(name)) && val.specified ? + val.value : + null : + val; +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +/** + * Document sorting and removing duplicates + * @param {ArrayLike} results + */ +Sizzle.uniqueSort = function( results ) { + var elem, + duplicates = [], + j = 0, + i = 0; + + // Unless we *know* we can detect duplicates, assume their presence + hasDuplicate = !support.detectDuplicates; + sortInput = !support.sortStable && results.slice( 0 ); + results.sort( sortOrder ); + + if ( hasDuplicate ) { + while ( (elem = results[i++]) ) { + if ( elem === results[ i ] ) { + j = duplicates.push( i ); + } + } + while ( j-- ) { + results.splice( duplicates[ j ], 1 ); + } + } + + return results; +}; + +/** + * Utility function for retrieving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +getText = Sizzle.getText = function( elem ) { + var node, + ret = "", + i = 0, + nodeType = elem.nodeType; + + if ( !nodeType ) { + // If no nodeType, this is expected to be an array + for ( ; (node = elem[i]); i++ ) { + // Do not traverse comment nodes + ret += getText( node ); + } + } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { + // Use textContent for elements + // innerText usage removed for consistency of new lines (see #11153) + if ( typeof elem.textContent === "string" ) { + return elem.textContent; + } else { + // Traverse its children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + // Do not include comment or processing instruction nodes + + return ret; +}; + +Expr = Sizzle.selectors = { + + // Can be adjusted by the user + cacheLength: 50, + + createPseudo: markFunction, + + match: matchExpr, + + attrHandle: {}, + + find: {}, + + relative: { + ">": { dir: "parentNode", first: true }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: true }, + "~": { dir: "previousSibling" } + }, + + preFilter: { + "ATTR": function( match ) { + match[1] = match[1].replace( runescape, funescape ); + + // Move the given value to match[3] whether quoted or unquoted + match[3] = ( match[4] || match[5] || "" ).replace( runescape, funescape ); + + if ( match[2] === "~=" ) { + match[3] = " " + match[3] + " "; + } + + return match.slice( 0, 4 ); + }, + + "CHILD": function( match ) { + /* matches from matchExpr["CHILD"] + 1 type (only|nth|...) + 2 what (child|of-type) + 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) + 4 xn-component of xn+y argument ([+-]?\d*n|) + 5 sign of xn-component + 6 x of xn-component + 7 sign of y-component + 8 y of y-component + */ + match[1] = match[1].toLowerCase(); + + if ( match[1].slice( 0, 3 ) === "nth" ) { + // nth-* requires argument + if ( !match[3] ) { + Sizzle.error( match[0] ); + } + + // numeric x and y parameters for Expr.filter.CHILD + // remember that false/true cast respectively to 0/1 + match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); + match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); + + // other types prohibit arguments + } else if ( match[3] ) { + Sizzle.error( match[0] ); + } + + return match; + }, + + "PSEUDO": function( match ) { + var excess, + unquoted = !match[5] && match[2]; + + if ( matchExpr["CHILD"].test( match[0] ) ) { + return null; + } + + // Accept quoted arguments as-is + if ( match[3] && match[4] !== undefined ) { + match[2] = match[4]; + + // Strip excess characters from unquoted arguments + } else if ( unquoted && rpseudo.test( unquoted ) && + // Get excess from tokenize (recursively) + (excess = tokenize( unquoted, true )) && + // advance to the next closing parenthesis + (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { + + // excess is a negative index + match[0] = match[0].slice( 0, excess ); + match[2] = unquoted.slice( 0, excess ); + } + + // Return only captures needed by the pseudo filter method (type and argument) + return match.slice( 0, 3 ); + } + }, + + filter: { + + "TAG": function( nodeNameSelector ) { + var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); + return nodeNameSelector === "*" ? + function() { return true; } : + function( elem ) { + return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; + }; + }, + + "CLASS": function( className ) { + var pattern = classCache[ className + " " ]; + + return pattern || + (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && + classCache( className, function( elem ) { + return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== strundefined && elem.getAttribute("class") || "" ); + }); + }, + + "ATTR": function( name, operator, check ) { + return function( elem ) { + var result = Sizzle.attr( elem, name ); + + if ( result == null ) { + return operator === "!="; + } + if ( !operator ) { + return true; + } + + result += ""; + + return operator === "=" ? result === check : + operator === "!=" ? result !== check : + operator === "^=" ? check && result.indexOf( check ) === 0 : + operator === "*=" ? check && result.indexOf( check ) > -1 : + operator === "$=" ? check && result.slice( -check.length ) === check : + operator === "~=" ? ( " " + result + " " ).indexOf( check ) > -1 : + operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : + false; + }; + }, + + "CHILD": function( type, what, argument, first, last ) { + var simple = type.slice( 0, 3 ) !== "nth", + forward = type.slice( -4 ) !== "last", + ofType = what === "of-type"; + + return first === 1 && last === 0 ? + + // Shortcut for :nth-*(n) + function( elem ) { + return !!elem.parentNode; + } : + + function( elem, context, xml ) { + var cache, outerCache, node, diff, nodeIndex, start, + dir = simple !== forward ? "nextSibling" : "previousSibling", + parent = elem.parentNode, + name = ofType && elem.nodeName.toLowerCase(), + useCache = !xml && !ofType; + + if ( parent ) { + + // :(first|last|only)-(child|of-type) + if ( simple ) { + while ( dir ) { + node = elem; + while ( (node = node[ dir ]) ) { + if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) { + return false; + } + } + // Reverse direction for :only-* (if we haven't yet done so) + start = dir = type === "only" && !start && "nextSibling"; + } + return true; + } + + start = [ forward ? parent.firstChild : parent.lastChild ]; + + // non-xml :nth-child(...) stores cache data on `parent` + if ( forward && useCache ) { + // Seek `elem` from a previously-cached index + outerCache = parent[ expando ] || (parent[ expando ] = {}); + cache = outerCache[ type ] || []; + nodeIndex = cache[0] === dirruns && cache[1]; + diff = cache[0] === dirruns && cache[2]; + node = nodeIndex && parent.childNodes[ nodeIndex ]; + + while ( (node = ++nodeIndex && node && node[ dir ] || + + // Fallback to seeking `elem` from the start + (diff = nodeIndex = 0) || start.pop()) ) { + + // When found, cache indexes on `parent` and break + if ( node.nodeType === 1 && ++diff && node === elem ) { + outerCache[ type ] = [ dirruns, nodeIndex, diff ]; + break; + } + } + + // Use previously-cached element index if available + } else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) { + diff = cache[1]; + + // xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...) + } else { + // Use the same loop as above to seek `elem` from the start + while ( (node = ++nodeIndex && node && node[ dir ] || + (diff = nodeIndex = 0) || start.pop()) ) { + + if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) { + // Cache the index of each encountered element + if ( useCache ) { + (node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ]; + } + + if ( node === elem ) { + break; + } + } + } + } + + // Incorporate the offset, then check against cycle size + diff -= last; + return diff === first || ( diff % first === 0 && diff / first >= 0 ); + } + }; + }, + + "PSEUDO": function( pseudo, argument ) { + // pseudo-class names are case-insensitive + // http://www.w3.org/TR/selectors/#pseudo-classes + // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters + // Remember that setFilters inherits from pseudos + var args, + fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || + Sizzle.error( "unsupported pseudo: " + pseudo ); + + // The user may use createPseudo to indicate that + // arguments are needed to create the filter function + // just as Sizzle does + if ( fn[ expando ] ) { + return fn( argument ); + } + + // But maintain support for old signatures + if ( fn.length > 1 ) { + args = [ pseudo, pseudo, "", argument ]; + return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? + markFunction(function( seed, matches ) { + var idx, + matched = fn( seed, argument ), + i = matched.length; + while ( i-- ) { + idx = indexOf.call( seed, matched[i] ); + seed[ idx ] = !( matches[ idx ] = matched[i] ); + } + }) : + function( elem ) { + return fn( elem, 0, args ); + }; + } + + return fn; + } + }, + + pseudos: { + // Potentially complex pseudos + "not": markFunction(function( selector ) { + // Trim the selector passed to compile + // to avoid treating leading and trailing + // spaces as combinators + var input = [], + results = [], + matcher = compile( selector.replace( rtrim, "$1" ) ); + + return matcher[ expando ] ? + markFunction(function( seed, matches, context, xml ) { + var elem, + unmatched = matcher( seed, null, xml, [] ), + i = seed.length; + + // Match elements unmatched by `matcher` + while ( i-- ) { + if ( (elem = unmatched[i]) ) { + seed[i] = !(matches[i] = elem); + } + } + }) : + function( elem, context, xml ) { + input[0] = elem; + matcher( input, null, xml, results ); + return !results.pop(); + }; + }), + + "has": markFunction(function( selector ) { + return function( elem ) { + return Sizzle( selector, elem ).length > 0; + }; + }), + + "contains": markFunction(function( text ) { + return function( elem ) { + return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1; + }; + }), + + // "Whether an element is represented by a :lang() selector + // is based solely on the element's language value + // being equal to the identifier C, + // or beginning with the identifier C immediately followed by "-". + // The matching of C against the element's language value is performed case-insensitively. + // The identifier C does not have to be a valid language name." + // http://www.w3.org/TR/selectors/#lang-pseudo + "lang": markFunction( function( lang ) { + // lang value must be a valid identifier + if ( !ridentifier.test(lang || "") ) { + Sizzle.error( "unsupported lang: " + lang ); + } + lang = lang.replace( runescape, funescape ).toLowerCase(); + return function( elem ) { + var elemLang; + do { + if ( (elemLang = documentIsHTML ? + elem.lang : + elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) { + + elemLang = elemLang.toLowerCase(); + return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; + } + } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); + return false; + }; + }), + + // Miscellaneous + "target": function( elem ) { + var hash = window.location && window.location.hash; + return hash && hash.slice( 1 ) === elem.id; + }, + + "root": function( elem ) { + return elem === docElem; + }, + + "focus": function( elem ) { + return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); + }, + + // Boolean properties + "enabled": function( elem ) { + return elem.disabled === false; + }, + + "disabled": function( elem ) { + return elem.disabled === true; + }, + + "checked": function( elem ) { + // In CSS3, :checked should return both checked and selected elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + var nodeName = elem.nodeName.toLowerCase(); + return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); + }, + + "selected": function( elem ) { + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + // Contents + "empty": function( elem ) { + // http://www.w3.org/TR/selectors/#empty-pseudo + // :empty is only affected by element nodes and content nodes(including text(3), cdata(4)), + // not comment, processing instructions, or others + // Thanks to Diego Perini for the nodeName shortcut + // Greater than "@" means alpha characters (specifically not starting with "#" or "?") + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + if ( elem.nodeName > "@" || elem.nodeType === 3 || elem.nodeType === 4 ) { + return false; + } + } + return true; + }, + + "parent": function( elem ) { + return !Expr.pseudos["empty"]( elem ); + }, + + // Element/input types + "header": function( elem ) { + return rheader.test( elem.nodeName ); + }, + + "input": function( elem ) { + return rinputs.test( elem.nodeName ); + }, + + "button": function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === "button" || name === "button"; + }, + + "text": function( elem ) { + var attr; + // IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc) + // use getAttribute instead to test this case + return elem.nodeName.toLowerCase() === "input" && + elem.type === "text" && + ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === elem.type ); + }, + + // Position-in-collection + "first": createPositionalPseudo(function() { + return [ 0 ]; + }), + + "last": createPositionalPseudo(function( matchIndexes, length ) { + return [ length - 1 ]; + }), + + "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { + return [ argument < 0 ? argument + length : argument ]; + }), + + "even": createPositionalPseudo(function( matchIndexes, length ) { + var i = 0; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "odd": createPositionalPseudo(function( matchIndexes, length ) { + var i = 1; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; --i >= 0; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; ++i < length; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }) + } +}; + +Expr.pseudos["nth"] = Expr.pseudos["eq"]; + +// Add button/input type pseudos +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { + Expr.pseudos[ i ] = createInputPseudo( i ); +} +for ( i in { submit: true, reset: true } ) { + Expr.pseudos[ i ] = createButtonPseudo( i ); +} + +// Easy API for creating new setFilters +function setFilters() {} +setFilters.prototype = Expr.filters = Expr.pseudos; +Expr.setFilters = new setFilters(); + +function tokenize( selector, parseOnly ) { + var matched, match, tokens, type, + soFar, groups, preFilters, + cached = tokenCache[ selector + " " ]; + + if ( cached ) { + return parseOnly ? 0 : cached.slice( 0 ); + } + + soFar = selector; + groups = []; + preFilters = Expr.preFilter; + + while ( soFar ) { + + // Comma and first run + if ( !matched || (match = rcomma.exec( soFar )) ) { + if ( match ) { + // Don't consume trailing commas as valid + soFar = soFar.slice( match[0].length ) || soFar; + } + groups.push( tokens = [] ); + } + + matched = false; + + // Combinators + if ( (match = rcombinators.exec( soFar )) ) { + matched = match.shift(); + tokens.push({ + value: matched, + // Cast descendant combinators to space + type: match[0].replace( rtrim, " " ) + }); + soFar = soFar.slice( matched.length ); + } + + // Filters + for ( type in Expr.filter ) { + if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || + (match = preFilters[ type ]( match ))) ) { + matched = match.shift(); + tokens.push({ + value: matched, + type: type, + matches: match + }); + soFar = soFar.slice( matched.length ); + } + } + + if ( !matched ) { + break; + } + } + + // Return the length of the invalid excess + // if we're just parsing + // Otherwise, throw an error or return tokens + return parseOnly ? + soFar.length : + soFar ? + Sizzle.error( selector ) : + // Cache the tokens + tokenCache( selector, groups ).slice( 0 ); +} + +function toSelector( tokens ) { + var i = 0, + len = tokens.length, + selector = ""; + for ( ; i < len; i++ ) { + selector += tokens[i].value; + } + return selector; +} + +function addCombinator( matcher, combinator, base ) { + var dir = combinator.dir, + checkNonElements = base && dir === "parentNode", + doneName = done++; + + return combinator.first ? + // Check against closest ancestor/preceding element + function( elem, context, xml ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + return matcher( elem, context, xml ); + } + } + } : + + // Check against all ancestor/preceding elements + function( elem, context, xml ) { + var data, cache, outerCache, + dirkey = dirruns + " " + doneName; + + // We can't set arbitrary data on XML nodes, so they don't benefit from dir caching + if ( xml ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + if ( matcher( elem, context, xml ) ) { + return true; + } + } + } + } else { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + outerCache = elem[ expando ] || (elem[ expando ] = {}); + if ( (cache = outerCache[ dir ]) && cache[0] === dirkey ) { + if ( (data = cache[1]) === true || data === cachedruns ) { + return data === true; + } + } else { + cache = outerCache[ dir ] = [ dirkey ]; + cache[1] = matcher( elem, context, xml ) || cachedruns; + if ( cache[1] === true ) { + return true; + } + } + } + } + } + }; +} + +function elementMatcher( matchers ) { + return matchers.length > 1 ? + function( elem, context, xml ) { + var i = matchers.length; + while ( i-- ) { + if ( !matchers[i]( elem, context, xml ) ) { + return false; + } + } + return true; + } : + matchers[0]; +} + +function condense( unmatched, map, filter, context, xml ) { + var elem, + newUnmatched = [], + i = 0, + len = unmatched.length, + mapped = map != null; + + for ( ; i < len; i++ ) { + if ( (elem = unmatched[i]) ) { + if ( !filter || filter( elem, context, xml ) ) { + newUnmatched.push( elem ); + if ( mapped ) { + map.push( i ); + } + } + } + } + + return newUnmatched; +} + +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { + if ( postFilter && !postFilter[ expando ] ) { + postFilter = setMatcher( postFilter ); + } + if ( postFinder && !postFinder[ expando ] ) { + postFinder = setMatcher( postFinder, postSelector ); + } + return markFunction(function( seed, results, context, xml ) { + var temp, i, elem, + preMap = [], + postMap = [], + preexisting = results.length, + + // Get initial elements from seed or context + elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), + + // Prefilter to get matcher input, preserving a map for seed-results synchronization + matcherIn = preFilter && ( seed || !selector ) ? + condense( elems, preMap, preFilter, context, xml ) : + elems, + + matcherOut = matcher ? + // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, + postFinder || ( seed ? preFilter : preexisting || postFilter ) ? + + // ...intermediate processing is necessary + [] : + + // ...otherwise use results directly + results : + matcherIn; + + // Find primary matches + if ( matcher ) { + matcher( matcherIn, matcherOut, context, xml ); + } + + // Apply postFilter + if ( postFilter ) { + temp = condense( matcherOut, postMap ); + postFilter( temp, [], context, xml ); + + // Un-match failing elements by moving them back to matcherIn + i = temp.length; + while ( i-- ) { + if ( (elem = temp[i]) ) { + matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); + } + } + } + + if ( seed ) { + if ( postFinder || preFilter ) { + if ( postFinder ) { + // Get the final matcherOut by condensing this intermediate into postFinder contexts + temp = []; + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) ) { + // Restore matcherIn since elem is not yet a final match + temp.push( (matcherIn[i] = elem) ); + } + } + postFinder( null, (matcherOut = []), temp, xml ); + } + + // Move matched elements from seed to results to keep them synchronized + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) && + (temp = postFinder ? indexOf.call( seed, elem ) : preMap[i]) > -1 ) { + + seed[temp] = !(results[temp] = elem); + } + } + } + + // Add elements to results, through postFinder if defined + } else { + matcherOut = condense( + matcherOut === results ? + matcherOut.splice( preexisting, matcherOut.length ) : + matcherOut + ); + if ( postFinder ) { + postFinder( null, results, matcherOut, xml ); + } else { + push.apply( results, matcherOut ); + } + } + }); +} + +function matcherFromTokens( tokens ) { + var checkContext, matcher, j, + len = tokens.length, + leadingRelative = Expr.relative[ tokens[0].type ], + implicitRelative = leadingRelative || Expr.relative[" "], + i = leadingRelative ? 1 : 0, + + // The foundational matcher ensures that elements are reachable from top-level context(s) + matchContext = addCombinator( function( elem ) { + return elem === checkContext; + }, implicitRelative, true ), + matchAnyContext = addCombinator( function( elem ) { + return indexOf.call( checkContext, elem ) > -1; + }, implicitRelative, true ), + matchers = [ function( elem, context, xml ) { + return ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( + (checkContext = context).nodeType ? + matchContext( elem, context, xml ) : + matchAnyContext( elem, context, xml ) ); + } ]; + + for ( ; i < len; i++ ) { + if ( (matcher = Expr.relative[ tokens[i].type ]) ) { + matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; + } else { + matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); + + // Return special upon seeing a positional matcher + if ( matcher[ expando ] ) { + // Find the next relative operator (if any) for proper handling + j = ++i; + for ( ; j < len; j++ ) { + if ( Expr.relative[ tokens[j].type ] ) { + break; + } + } + return setMatcher( + i > 1 && elementMatcher( matchers ), + i > 1 && toSelector( + // If the preceding token was a descendant combinator, insert an implicit any-element `*` + tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" }) + ).replace( rtrim, "$1" ), + matcher, + i < j && matcherFromTokens( tokens.slice( i, j ) ), + j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), + j < len && toSelector( tokens ) + ); + } + matchers.push( matcher ); + } + } + + return elementMatcher( matchers ); +} + +function matcherFromGroupMatchers( elementMatchers, setMatchers ) { + // A counter to specify which element is currently being matched + var matcherCachedRuns = 0, + bySet = setMatchers.length > 0, + byElement = elementMatchers.length > 0, + superMatcher = function( seed, context, xml, results, expandContext ) { + var elem, j, matcher, + setMatched = [], + matchedCount = 0, + i = "0", + unmatched = seed && [], + outermost = expandContext != null, + contextBackup = outermostContext, + // We must always have either seed elements or context + elems = seed || byElement && Expr.find["TAG"]( "*", expandContext && context.parentNode || context ), + // Use integer dirruns iff this is the outermost matcher + dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1); + + if ( outermost ) { + outermostContext = context !== document && context; + cachedruns = matcherCachedRuns; + } + + // Add elements passing elementMatchers directly to results + // Keep `i` a string if there are no elements so `matchedCount` will be "00" below + for ( ; (elem = elems[i]) != null; i++ ) { + if ( byElement && elem ) { + j = 0; + while ( (matcher = elementMatchers[j++]) ) { + if ( matcher( elem, context, xml ) ) { + results.push( elem ); + break; + } + } + if ( outermost ) { + dirruns = dirrunsUnique; + cachedruns = ++matcherCachedRuns; + } + } + + // Track unmatched elements for set filters + if ( bySet ) { + // They will have gone through all possible matchers + if ( (elem = !matcher && elem) ) { + matchedCount--; + } + + // Lengthen the array for every element, matched or not + if ( seed ) { + unmatched.push( elem ); + } + } + } + + // Apply set filters to unmatched elements + matchedCount += i; + if ( bySet && i !== matchedCount ) { + j = 0; + while ( (matcher = setMatchers[j++]) ) { + matcher( unmatched, setMatched, context, xml ); + } + + if ( seed ) { + // Reintegrate element matches to eliminate the need for sorting + if ( matchedCount > 0 ) { + while ( i-- ) { + if ( !(unmatched[i] || setMatched[i]) ) { + setMatched[i] = pop.call( results ); + } + } + } + + // Discard index placeholder values to get only actual matches + setMatched = condense( setMatched ); + } + + // Add matches to results + push.apply( results, setMatched ); + + // Seedless set matches succeeding multiple successful matchers stipulate sorting + if ( outermost && !seed && setMatched.length > 0 && + ( matchedCount + setMatchers.length ) > 1 ) { + + Sizzle.uniqueSort( results ); + } + } + + // Override manipulation of globals by nested matchers + if ( outermost ) { + dirruns = dirrunsUnique; + outermostContext = contextBackup; + } + + return unmatched; + }; + + return bySet ? + markFunction( superMatcher ) : + superMatcher; +} + +compile = Sizzle.compile = function( selector, group /* Internal Use Only */ ) { + var i, + setMatchers = [], + elementMatchers = [], + cached = compilerCache[ selector + " " ]; + + if ( !cached ) { + // Generate a function of recursive functions that can be used to check each element + if ( !group ) { + group = tokenize( selector ); + } + i = group.length; + while ( i-- ) { + cached = matcherFromTokens( group[i] ); + if ( cached[ expando ] ) { + setMatchers.push( cached ); + } else { + elementMatchers.push( cached ); + } + } + + // Cache the compiled function + cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); + } + return cached; +}; + +function multipleContexts( selector, contexts, results ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + Sizzle( selector, contexts[i], results ); + } + return results; +} + +function select( selector, context, results, seed ) { + var i, tokens, token, type, find, + match = tokenize( selector ); + + if ( !seed ) { + // Try to minimize operations if there is only one group + if ( match.length === 1 ) { + + // Take a shortcut and set the context if the root selector is an ID + tokens = match[0] = match[0].slice( 0 ); + if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && + support.getById && context.nodeType === 9 && documentIsHTML && + Expr.relative[ tokens[1].type ] ) { + + context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0]; + if ( !context ) { + return results; + } + selector = selector.slice( tokens.shift().value.length ); + } + + // Fetch a seed set for right-to-left matching + i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length; + while ( i-- ) { + token = tokens[i]; + + // Abort if we hit a combinator + if ( Expr.relative[ (type = token.type) ] ) { + break; + } + if ( (find = Expr.find[ type ]) ) { + // Search, expanding context for leading sibling combinators + if ( (seed = find( + token.matches[0].replace( runescape, funescape ), + rsibling.test( tokens[0].type ) && context.parentNode || context + )) ) { + + // If seed is empty or no tokens remain, we can return early + tokens.splice( i, 1 ); + selector = seed.length && toSelector( tokens ); + if ( !selector ) { + push.apply( results, seed ); + return results; + } + + break; + } + } + } + } + } + + // Compile and execute a filtering function + // Provide `match` to avoid retokenization if we modified the selector above + compile( selector, match )( + seed, + context, + !documentIsHTML, + results, + rsibling.test( selector ) + ); + return results; +} + +// One-time assignments + +// Sort stability +support.sortStable = expando.split("").sort( sortOrder ).join("") === expando; + +// Support: Chrome<14 +// Always assume duplicates if they aren't passed to the comparison function +support.detectDuplicates = hasDuplicate; + +// Initialize against the default document +setDocument(); + +// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) +// Detached nodes confoundingly follow *each other* +support.sortDetached = assert(function( div1 ) { + // Should return 1, but returns 4 (following) + return div1.compareDocumentPosition( document.createElement("div") ) & 1; +}); + +// Support: IE<8 +// Prevent attribute/property "interpolation" +// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +if ( !assert(function( div ) { + div.innerHTML = ""; + return div.firstChild.getAttribute("href") === "#" ; +}) ) { + addHandle( "type|href|height|width", function( elem, name, isXML ) { + if ( !isXML ) { + return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); + } + }); +} + +// Support: IE<9 +// Use defaultValue in place of getAttribute("value") +if ( !support.attributes || !assert(function( div ) { + div.innerHTML = ""; + div.firstChild.setAttribute( "value", "" ); + return div.firstChild.getAttribute( "value" ) === ""; +}) ) { + addHandle( "value", function( elem, name, isXML ) { + if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { + return elem.defaultValue; + } + }); +} + +// Support: IE<9 +// Use getAttributeNode to fetch booleans when getAttribute lies +if ( !assert(function( div ) { + return div.getAttribute("disabled") == null; +}) ) { + addHandle( booleans, function( elem, name, isXML ) { + var val; + if ( !isXML ) { + return (val = elem.getAttributeNode( name )) && val.specified ? + val.value : + elem[ name ] === true ? name.toLowerCase() : null; + } + }); +} + +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; +jQuery.expr[":"] = jQuery.expr.pseudos; +jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; + + +})( window ); +// String to Object options format cache +var optionsCache = {}; + +// Convert String-formatted options into Object-formatted ones and store in cache +function createOptions( options ) { + var object = optionsCache[ options ] = {}; + jQuery.each( options.match( core_rnotwhite ) || [], function( _, flag ) { + object[ flag ] = true; + }); + return object; +} + +/* + * Create a callback list using the following parameters: + * + * options: an optional list of space-separated options that will change how + * the callback list behaves or a more traditional option object + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible options: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( options ) { + + // Convert options from String-formatted to Object-formatted if needed + // (we check in cache first) + options = typeof options === "string" ? + ( optionsCache[ options ] || createOptions( options ) ) : + jQuery.extend( {}, options ); + + var // Flag to know if list is currently firing + firing, + // Last fire value (for non-forgettable lists) + memory, + // Flag to know if list was already fired + fired, + // End of the loop when firing + firingLength, + // Index of currently firing callback (modified by remove if needed) + firingIndex, + // First callback to fire (used internally by add and fireWith) + firingStart, + // Actual callback list + list = [], + // Stack of fire calls for repeatable lists + stack = !options.once && [], + // Fire callbacks + fire = function( data ) { + memory = options.memory && data; + fired = true; + firingIndex = firingStart || 0; + firingStart = 0; + firingLength = list.length; + firing = true; + for ( ; list && firingIndex < firingLength; firingIndex++ ) { + if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) { + memory = false; // To prevent further calls using add + break; + } + } + firing = false; + if ( list ) { + if ( stack ) { + if ( stack.length ) { + fire( stack.shift() ); + } + } else if ( memory ) { + list = []; + } else { + self.disable(); + } + } + }, + // Actual Callbacks object + self = { + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + // First, we save the current length + var start = list.length; + (function add( args ) { + jQuery.each( args, function( _, arg ) { + var type = jQuery.type( arg ); + if ( type === "function" ) { + if ( !options.unique || !self.has( arg ) ) { + list.push( arg ); + } + } else if ( arg && arg.length && type !== "string" ) { + // Inspect recursively + add( arg ); + } + }); + })( arguments ); + // Do we need to add the callbacks to the + // current firing batch? + if ( firing ) { + firingLength = list.length; + // With memory, if we're not firing then + // we should call right away + } else if ( memory ) { + firingStart = start; + fire( memory ); + } + } + return this; + }, + // Remove a callback from the list + remove: function() { + if ( list ) { + jQuery.each( arguments, function( _, arg ) { + var index; + while( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + // Handle firing indexes + if ( firing ) { + if ( index <= firingLength ) { + firingLength--; + } + if ( index <= firingIndex ) { + firingIndex--; + } + } + } + }); + } + return this; + }, + // Check if a given callback is in the list. + // If no argument is given, return whether or not list has callbacks attached. + has: function( fn ) { + return fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length ); + }, + // Remove all callbacks from the list + empty: function() { + list = []; + firingLength = 0; + return this; + }, + // Have the list do nothing anymore + disable: function() { + list = stack = memory = undefined; + return this; + }, + // Is it disabled? + disabled: function() { + return !list; + }, + // Lock the list in its current state + lock: function() { + stack = undefined; + if ( !memory ) { + self.disable(); + } + return this; + }, + // Is it locked? + locked: function() { + return !stack; + }, + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + if ( list && ( !fired || stack ) ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + if ( firing ) { + stack.push( args ); + } else { + fire( args ); + } + } + return this; + }, + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + // To know if the callbacks have already been called at least once + fired: function() { + return !!fired; + } + }; + + return self; +}; +jQuery.extend({ + + Deferred: function( func ) { + var tuples = [ + // action, add listener, listener list, final state + [ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ], + [ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ], + [ "notify", "progress", jQuery.Callbacks("memory") ] + ], + state = "pending", + promise = { + state: function() { + return state; + }, + always: function() { + deferred.done( arguments ).fail( arguments ); + return this; + }, + then: function( /* fnDone, fnFail, fnProgress */ ) { + var fns = arguments; + return jQuery.Deferred(function( newDefer ) { + jQuery.each( tuples, function( i, tuple ) { + var action = tuple[ 0 ], + fn = jQuery.isFunction( fns[ i ] ) && fns[ i ]; + // deferred[ done | fail | progress ] for forwarding actions to newDefer + deferred[ tuple[1] ](function() { + var returned = fn && fn.apply( this, arguments ); + if ( returned && jQuery.isFunction( returned.promise ) ) { + returned.promise() + .done( newDefer.resolve ) + .fail( newDefer.reject ) + .progress( newDefer.notify ); + } else { + newDefer[ action + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments ); + } + }); + }); + fns = null; + }).promise(); + }, + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + return obj != null ? jQuery.extend( obj, promise ) : promise; + } + }, + deferred = {}; + + // Keep pipe for back-compat + promise.pipe = promise.then; + + // Add list-specific methods + jQuery.each( tuples, function( i, tuple ) { + var list = tuple[ 2 ], + stateString = tuple[ 3 ]; + + // promise[ done | fail | progress ] = list.add + promise[ tuple[1] ] = list.add; + + // Handle state + if ( stateString ) { + list.add(function() { + // state = [ resolved | rejected ] + state = stateString; + + // [ reject_list | resolve_list ].disable; progress_list.lock + }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock ); + } + + // deferred[ resolve | reject | notify ] + deferred[ tuple[0] ] = function() { + deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments ); + return this; + }; + deferred[ tuple[0] + "With" ] = list.fireWith; + }); + + // Make the deferred a promise + promise.promise( deferred ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( subordinate /* , ..., subordinateN */ ) { + var i = 0, + resolveValues = core_slice.call( arguments ), + length = resolveValues.length, + + // the count of uncompleted subordinates + remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0, + + // the master Deferred. If resolveValues consist of only a single Deferred, just use that. + deferred = remaining === 1 ? subordinate : jQuery.Deferred(), + + // Update function for both resolve and progress values + updateFunc = function( i, contexts, values ) { + return function( value ) { + contexts[ i ] = this; + values[ i ] = arguments.length > 1 ? core_slice.call( arguments ) : value; + if( values === progressValues ) { + deferred.notifyWith( contexts, values ); + } else if ( !( --remaining ) ) { + deferred.resolveWith( contexts, values ); + } + }; + }, + + progressValues, progressContexts, resolveContexts; + + // add listeners to Deferred subordinates; treat others as resolved + if ( length > 1 ) { + progressValues = new Array( length ); + progressContexts = new Array( length ); + resolveContexts = new Array( length ); + for ( ; i < length; i++ ) { + if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) { + resolveValues[ i ].promise() + .done( updateFunc( i, resolveContexts, resolveValues ) ) + .fail( deferred.reject ) + .progress( updateFunc( i, progressContexts, progressValues ) ); + } else { + --remaining; + } + } + } + + // if we're not waiting on anything, resolve the master + if ( !remaining ) { + deferred.resolveWith( resolveContexts, resolveValues ); + } + + return deferred.promise(); + } +}); +jQuery.support = (function( support ) { + + var all, a, input, select, fragment, opt, eventName, isSupported, i, + div = document.createElement("div"); + + // Setup + div.setAttribute( "className", "t" ); + div.innerHTML = "
a"; + + // Finish early in limited (non-browser) environments + all = div.getElementsByTagName("*") || []; + a = div.getElementsByTagName("a")[ 0 ]; + if ( !a || !a.style || !all.length ) { + return support; + } + + // First batch of tests + select = document.createElement("select"); + opt = select.appendChild( document.createElement("option") ); + input = div.getElementsByTagName("input")[ 0 ]; + + a.style.cssText = "top:1px;float:left;opacity:.5"; + + // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7) + support.getSetAttribute = div.className !== "t"; + + // IE strips leading whitespace when .innerHTML is used + support.leadingWhitespace = div.firstChild.nodeType === 3; + + // Make sure that tbody elements aren't automatically inserted + // IE will insert them into empty tables + support.tbody = !div.getElementsByTagName("tbody").length; + + // Make sure that link elements get serialized correctly by innerHTML + // This requires a wrapper element in IE + support.htmlSerialize = !!div.getElementsByTagName("link").length; + + // Get the style information from getAttribute + // (IE uses .cssText instead) + support.style = /top/.test( a.getAttribute("style") ); + + // Make sure that URLs aren't manipulated + // (IE normalizes it by default) + support.hrefNormalized = a.getAttribute("href") === "/a"; + + // Make sure that element opacity exists + // (IE uses filter instead) + // Use a regex to work around a WebKit issue. See #5145 + support.opacity = /^0.5/.test( a.style.opacity ); + + // Verify style float existence + // (IE uses styleFloat instead of cssFloat) + support.cssFloat = !!a.style.cssFloat; + + // Check the default checkbox/radio value ("" on WebKit; "on" elsewhere) + support.checkOn = !!input.value; + + // Make sure that a selected-by-default option has a working selected property. + // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) + support.optSelected = opt.selected; + + // Tests for enctype support on a form (#6743) + support.enctype = !!document.createElement("form").enctype; + + // Makes sure cloning an html5 element does not cause problems + // Where outerHTML is undefined, this still works + support.html5Clone = document.createElement("nav").cloneNode( true ).outerHTML !== "<:nav>"; + + // Will be defined later + support.inlineBlockNeedsLayout = false; + support.shrinkWrapBlocks = false; + support.pixelPosition = false; + support.deleteExpando = true; + support.noCloneEvent = true; + support.reliableMarginRight = true; + support.boxSizingReliable = true; + + // Make sure checked status is properly cloned + input.checked = true; + support.noCloneChecked = input.cloneNode( true ).checked; + + // Make sure that the options inside disabled selects aren't marked as disabled + // (WebKit marks them as disabled) + select.disabled = true; + support.optDisabled = !opt.disabled; + + // Support: IE<9 + try { + delete div.test; + } catch( e ) { + support.deleteExpando = false; + } + + // Check if we can trust getAttribute("value") + input = document.createElement("input"); + input.setAttribute( "value", "" ); + support.input = input.getAttribute( "value" ) === ""; + + // Check if an input maintains its value after becoming a radio + input.value = "t"; + input.setAttribute( "type", "radio" ); + support.radioValue = input.value === "t"; + + // #11217 - WebKit loses check when the name is after the checked attribute + input.setAttribute( "checked", "t" ); + input.setAttribute( "name", "t" ); + + fragment = document.createDocumentFragment(); + fragment.appendChild( input ); + + // Check if a disconnected checkbox will retain its checked + // value of true after appended to the DOM (IE6/7) + support.appendChecked = input.checked; + + // WebKit doesn't clone checked state correctly in fragments + support.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Support: IE<9 + // Opera does not clone events (and typeof div.attachEvent === undefined). + // IE9-10 clones events bound via attachEvent, but they don't trigger with .click() + if ( div.attachEvent ) { + div.attachEvent( "onclick", function() { + support.noCloneEvent = false; + }); + + div.cloneNode( true ).click(); + } + + // Support: IE<9 (lack submit/change bubble), Firefox 17+ (lack focusin event) + // Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP) + for ( i in { submit: true, change: true, focusin: true }) { + div.setAttribute( eventName = "on" + i, "t" ); + + support[ i + "Bubbles" ] = eventName in window || div.attributes[ eventName ].expando === false; + } + + div.style.backgroundClip = "content-box"; + div.cloneNode( true ).style.backgroundClip = ""; + support.clearCloneStyle = div.style.backgroundClip === "content-box"; + + // Support: IE<9 + // Iteration over object's inherited properties before its own. + for ( i in jQuery( support ) ) { + break; + } + support.ownLast = i !== "0"; + + // Run tests that need a body at doc ready + jQuery(function() { + var container, marginDiv, tds, + divReset = "padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;", + body = document.getElementsByTagName("body")[0]; + + if ( !body ) { + // Return for frameset docs that don't have a body + return; + } + + container = document.createElement("div"); + container.style.cssText = "border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px"; + + body.appendChild( container ).appendChild( div ); + + // Support: IE8 + // Check if table cells still have offsetWidth/Height when they are set + // to display:none and there are still other visible table cells in a + // table row; if so, offsetWidth/Height are not reliable for use when + // determining if an element has been hidden directly using + // display:none (it is still safe to use offsets if a parent element is + // hidden; don safety goggles and see bug #4512 for more information). + div.innerHTML = "
t
"; + tds = div.getElementsByTagName("td"); + tds[ 0 ].style.cssText = "padding:0;margin:0;border:0;display:none"; + isSupported = ( tds[ 0 ].offsetHeight === 0 ); + + tds[ 0 ].style.display = ""; + tds[ 1 ].style.display = "none"; + + // Support: IE8 + // Check if empty table cells still have offsetWidth/Height + support.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 ); + + // Check box-sizing and margin behavior. + div.innerHTML = ""; + div.style.cssText = "box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;"; + + // Workaround failing boxSizing test due to offsetWidth returning wrong value + // with some non-1 values of body zoom, ticket #13543 + jQuery.swap( body, body.style.zoom != null ? { zoom: 1 } : {}, function() { + support.boxSizing = div.offsetWidth === 4; + }); + + // Use window.getComputedStyle because jsdom on node.js will break without it. + if ( window.getComputedStyle ) { + support.pixelPosition = ( window.getComputedStyle( div, null ) || {} ).top !== "1%"; + support.boxSizingReliable = ( window.getComputedStyle( div, null ) || { width: "4px" } ).width === "4px"; + + // Check if div with explicit width and no margin-right incorrectly + // gets computed margin-right based on width of container. (#3333) + // Fails in WebKit before Feb 2011 nightlies + // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right + marginDiv = div.appendChild( document.createElement("div") ); + marginDiv.style.cssText = div.style.cssText = divReset; + marginDiv.style.marginRight = marginDiv.style.width = "0"; + div.style.width = "1px"; + + support.reliableMarginRight = + !parseFloat( ( window.getComputedStyle( marginDiv, null ) || {} ).marginRight ); + } + + if ( typeof div.style.zoom !== core_strundefined ) { + // Support: IE<8 + // Check if natively block-level elements act like inline-block + // elements when setting their display to 'inline' and giving + // them layout + div.innerHTML = ""; + div.style.cssText = divReset + "width:1px;padding:1px;display:inline;zoom:1"; + support.inlineBlockNeedsLayout = ( div.offsetWidth === 3 ); + + // Support: IE6 + // Check if elements with layout shrink-wrap their children + div.style.display = "block"; + div.innerHTML = "
"; + div.firstChild.style.width = "5px"; + support.shrinkWrapBlocks = ( div.offsetWidth !== 3 ); + + if ( support.inlineBlockNeedsLayout ) { + // Prevent IE 6 from affecting layout for positioned elements #11048 + // Prevent IE from shrinking the body in IE 7 mode #12869 + // Support: IE<8 + body.style.zoom = 1; + } + } + + body.removeChild( container ); + + // Null elements to avoid leaks in IE + container = div = tds = marginDiv = null; + }); + + // Null elements to avoid leaks in IE + all = select = fragment = opt = a = input = null; + + return support; +})({}); + +var rbrace = /(?:\{[\s\S]*\}|\[[\s\S]*\])$/, + rmultiDash = /([A-Z])/g; + +function internalData( elem, name, data, pvt /* Internal Use Only */ ){ + if ( !jQuery.acceptData( elem ) ) { + return; + } + + var ret, thisCache, + internalKey = jQuery.expando, + + // We have to handle DOM nodes and JS objects differently because IE6-7 + // can't GC object references properly across the DOM-JS boundary + isNode = elem.nodeType, + + // Only DOM nodes need the global jQuery cache; JS object data is + // attached directly to the object so GC can occur automatically + cache = isNode ? jQuery.cache : elem, + + // Only defining an ID for JS objects if its cache already exists allows + // the code to shortcut on the same path as a DOM node with no cache + id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey; + + // Avoid doing any more work than we need to when trying to get data on an + // object that has no data at all + if ( (!id || !cache[id] || (!pvt && !cache[id].data)) && data === undefined && typeof name === "string" ) { + return; + } + + if ( !id ) { + // Only DOM nodes need a new unique ID for each element since their data + // ends up in the global cache + if ( isNode ) { + id = elem[ internalKey ] = core_deletedIds.pop() || jQuery.guid++; + } else { + id = internalKey; + } + } + + if ( !cache[ id ] ) { + // Avoid exposing jQuery metadata on plain JS objects when the object + // is serialized using JSON.stringify + cache[ id ] = isNode ? {} : { toJSON: jQuery.noop }; + } + + // An object can be passed to jQuery.data instead of a key/value pair; this gets + // shallow copied over onto the existing cache + if ( typeof name === "object" || typeof name === "function" ) { + if ( pvt ) { + cache[ id ] = jQuery.extend( cache[ id ], name ); + } else { + cache[ id ].data = jQuery.extend( cache[ id ].data, name ); + } + } + + thisCache = cache[ id ]; + + // jQuery data() is stored in a separate object inside the object's internal data + // cache in order to avoid key collisions between internal data and user-defined + // data. + if ( !pvt ) { + if ( !thisCache.data ) { + thisCache.data = {}; + } + + thisCache = thisCache.data; + } + + if ( data !== undefined ) { + thisCache[ jQuery.camelCase( name ) ] = data; + } + + // Check for both converted-to-camel and non-converted data property names + // If a data property was specified + if ( typeof name === "string" ) { + + // First Try to find as-is property data + ret = thisCache[ name ]; + + // Test for null|undefined property data + if ( ret == null ) { + + // Try to find the camelCased property + ret = thisCache[ jQuery.camelCase( name ) ]; + } + } else { + ret = thisCache; + } + + return ret; +} + +function internalRemoveData( elem, name, pvt ) { + if ( !jQuery.acceptData( elem ) ) { + return; + } + + var thisCache, i, + isNode = elem.nodeType, + + // See jQuery.data for more information + cache = isNode ? jQuery.cache : elem, + id = isNode ? elem[ jQuery.expando ] : jQuery.expando; + + // If there is already no cache entry for this object, there is no + // purpose in continuing + if ( !cache[ id ] ) { + return; + } + + if ( name ) { + + thisCache = pvt ? cache[ id ] : cache[ id ].data; + + if ( thisCache ) { + + // Support array or space separated string names for data keys + if ( !jQuery.isArray( name ) ) { + + // try the string as a key before any manipulation + if ( name in thisCache ) { + name = [ name ]; + } else { + + // split the camel cased version by spaces unless a key with the spaces exists + name = jQuery.camelCase( name ); + if ( name in thisCache ) { + name = [ name ]; + } else { + name = name.split(" "); + } + } + } else { + // If "name" is an array of keys... + // When data is initially created, via ("key", "val") signature, + // keys will be converted to camelCase. + // Since there is no way to tell _how_ a key was added, remove + // both plain key and camelCase key. #12786 + // This will only penalize the array argument path. + name = name.concat( jQuery.map( name, jQuery.camelCase ) ); + } + + i = name.length; + while ( i-- ) { + delete thisCache[ name[i] ]; + } + + // If there is no data left in the cache, we want to continue + // and let the cache object itself get destroyed + if ( pvt ? !isEmptyDataObject(thisCache) : !jQuery.isEmptyObject(thisCache) ) { + return; + } + } + } + + // See jQuery.data for more information + if ( !pvt ) { + delete cache[ id ].data; + + // Don't destroy the parent cache unless the internal data object + // had been the only thing left in it + if ( !isEmptyDataObject( cache[ id ] ) ) { + return; + } + } + + // Destroy the cache + if ( isNode ) { + jQuery.cleanData( [ elem ], true ); + + // Use delete when supported for expandos or `cache` is not a window per isWindow (#10080) + /* jshint eqeqeq: false */ + } else if ( jQuery.support.deleteExpando || cache != cache.window ) { + /* jshint eqeqeq: true */ + delete cache[ id ]; + + // When all else fails, null + } else { + cache[ id ] = null; + } +} + +jQuery.extend({ + cache: {}, + + // The following elements throw uncatchable exceptions if you + // attempt to add expando properties to them. + noData: { + "applet": true, + "embed": true, + // Ban all objects except for Flash (which handle expandos) + "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" + }, + + hasData: function( elem ) { + elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ]; + return !!elem && !isEmptyDataObject( elem ); + }, + + data: function( elem, name, data ) { + return internalData( elem, name, data ); + }, + + removeData: function( elem, name ) { + return internalRemoveData( elem, name ); + }, + + // For internal use only. + _data: function( elem, name, data ) { + return internalData( elem, name, data, true ); + }, + + _removeData: function( elem, name ) { + return internalRemoveData( elem, name, true ); + }, + + // A method for determining if a DOM node can handle the data expando + acceptData: function( elem ) { + // Do not set data on non-element because it will not be cleared (#8335). + if ( elem.nodeType && elem.nodeType !== 1 && elem.nodeType !== 9 ) { + return false; + } + + var noData = elem.nodeName && jQuery.noData[ elem.nodeName.toLowerCase() ]; + + // nodes accept data unless otherwise specified; rejection can be conditional + return !noData || noData !== true && elem.getAttribute("classid") === noData; + } +}); + +jQuery.fn.extend({ + data: function( key, value ) { + var attrs, name, + data = null, + i = 0, + elem = this[0]; + + // Special expections of .data basically thwart jQuery.access, + // so implement the relevant behavior ourselves + + // Gets all values + if ( key === undefined ) { + if ( this.length ) { + data = jQuery.data( elem ); + + if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) { + attrs = elem.attributes; + for ( ; i < attrs.length; i++ ) { + name = attrs[i].name; + + if ( name.indexOf("data-") === 0 ) { + name = jQuery.camelCase( name.slice(5) ); + + dataAttr( elem, name, data[ name ] ); + } + } + jQuery._data( elem, "parsedAttrs", true ); + } + } + + return data; + } + + // Sets multiple values + if ( typeof key === "object" ) { + return this.each(function() { + jQuery.data( this, key ); + }); + } + + return arguments.length > 1 ? + + // Sets one value + this.each(function() { + jQuery.data( this, key, value ); + }) : + + // Gets one value + // Try to fetch any internally stored data first + elem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : null; + }, + + removeData: function( key ) { + return this.each(function() { + jQuery.removeData( this, key ); + }); + } +}); + +function dataAttr( elem, key, data ) { + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + + var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase(); + + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = data === "true" ? true : + data === "false" ? false : + data === "null" ? null : + // Only convert to a number if it doesn't change the string + +data + "" === data ? +data : + rbrace.test( data ) ? jQuery.parseJSON( data ) : + data; + } catch( e ) {} + + // Make sure we set the data so it isn't changed later + jQuery.data( elem, key, data ); + + } else { + data = undefined; + } + } + + return data; +} + +// checks a cache object for emptiness +function isEmptyDataObject( obj ) { + var name; + for ( name in obj ) { + + // if the public data object is empty, the private is still empty + if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) { + continue; + } + if ( name !== "toJSON" ) { + return false; + } + } + + return true; +} +jQuery.extend({ + queue: function( elem, type, data ) { + var queue; + + if ( elem ) { + type = ( type || "fx" ) + "queue"; + queue = jQuery._data( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !queue || jQuery.isArray(data) ) { + queue = jQuery._data( elem, type, jQuery.makeArray(data) ); + } else { + queue.push( data ); + } + } + return queue || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + startLength = queue.length, + fn = queue.shift(), + hooks = jQuery._queueHooks( elem, type ), + next = function() { + jQuery.dequeue( elem, type ); + }; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + startLength--; + } + + if ( fn ) { + + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + // clear up the last queue stop function + delete hooks.stop; + fn.call( elem, next, hooks ); + } + + if ( !startLength && hooks ) { + hooks.empty.fire(); + } + }, + + // not intended for public consumption - generates a queueHooks object, or returns the current one + _queueHooks: function( elem, type ) { + var key = type + "queueHooks"; + return jQuery._data( elem, key ) || jQuery._data( elem, key, { + empty: jQuery.Callbacks("once memory").add(function() { + jQuery._removeData( elem, type + "queue" ); + jQuery._removeData( elem, key ); + }) + }); + } +}); + +jQuery.fn.extend({ + queue: function( type, data ) { + var setter = 2; + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + setter--; + } + + if ( arguments.length < setter ) { + return jQuery.queue( this[0], type ); + } + + return data === undefined ? + this : + this.each(function() { + var queue = jQuery.queue( this, type, data ); + + // ensure a hooks for this queue + jQuery._queueHooks( this, type ); + + if ( type === "fx" && queue[0] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + }); + }, + dequeue: function( type ) { + return this.each(function() { + jQuery.dequeue( this, type ); + }); + }, + // Based off of the plugin by Clint Helfers, with permission. + // http://blindsignals.com/index.php/2009/07/jquery-delay/ + delay: function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = setTimeout( next, time ); + hooks.stop = function() { + clearTimeout( timeout ); + }; + }); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, obj ) { + var tmp, + count = 1, + defer = jQuery.Deferred(), + elements = this, + i = this.length, + resolve = function() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + }; + + if ( typeof type !== "string" ) { + obj = type; + type = undefined; + } + type = type || "fx"; + + while( i-- ) { + tmp = jQuery._data( elements[ i ], type + "queueHooks" ); + if ( tmp && tmp.empty ) { + count++; + tmp.empty.add( resolve ); + } + } + resolve(); + return defer.promise( obj ); + } +}); +var nodeHook, boolHook, + rclass = /[\t\r\n\f]/g, + rreturn = /\r/g, + rfocusable = /^(?:input|select|textarea|button|object)$/i, + rclickable = /^(?:a|area)$/i, + ruseDefault = /^(?:checked|selected)$/i, + getSetAttribute = jQuery.support.getSetAttribute, + getSetInput = jQuery.support.input; + +jQuery.fn.extend({ + attr: function( name, value ) { + return jQuery.access( this, jQuery.attr, name, value, arguments.length > 1 ); + }, + + removeAttr: function( name ) { + return this.each(function() { + jQuery.removeAttr( this, name ); + }); + }, + + prop: function( name, value ) { + return jQuery.access( this, jQuery.prop, name, value, arguments.length > 1 ); + }, + + removeProp: function( name ) { + name = jQuery.propFix[ name ] || name; + return this.each(function() { + // try/catch handles cases where IE balks (such as removing a property on window) + try { + this[ name ] = undefined; + delete this[ name ]; + } catch( e ) {} + }); + }, + + addClass: function( value ) { + var classes, elem, cur, clazz, j, + i = 0, + len = this.length, + proceed = typeof value === "string" && value; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( j ) { + jQuery( this ).addClass( value.call( this, j, this.className ) ); + }); + } + + if ( proceed ) { + // The disjunction here is for better compressibility (see removeClass) + classes = ( value || "" ).match( core_rnotwhite ) || []; + + for ( ; i < len; i++ ) { + elem = this[ i ]; + cur = elem.nodeType === 1 && ( elem.className ? + ( " " + elem.className + " " ).replace( rclass, " " ) : + " " + ); + + if ( cur ) { + j = 0; + while ( (clazz = classes[j++]) ) { + if ( cur.indexOf( " " + clazz + " " ) < 0 ) { + cur += clazz + " "; + } + } + elem.className = jQuery.trim( cur ); + + } + } + } + + return this; + }, + + removeClass: function( value ) { + var classes, elem, cur, clazz, j, + i = 0, + len = this.length, + proceed = arguments.length === 0 || typeof value === "string" && value; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( j ) { + jQuery( this ).removeClass( value.call( this, j, this.className ) ); + }); + } + if ( proceed ) { + classes = ( value || "" ).match( core_rnotwhite ) || []; + + for ( ; i < len; i++ ) { + elem = this[ i ]; + // This expression is here for better compressibility (see addClass) + cur = elem.nodeType === 1 && ( elem.className ? + ( " " + elem.className + " " ).replace( rclass, " " ) : + "" + ); + + if ( cur ) { + j = 0; + while ( (clazz = classes[j++]) ) { + // Remove *all* instances + while ( cur.indexOf( " " + clazz + " " ) >= 0 ) { + cur = cur.replace( " " + clazz + " ", " " ); + } + } + elem.className = value ? jQuery.trim( cur ) : ""; + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value; + + if ( typeof stateVal === "boolean" && type === "string" ) { + return stateVal ? this.addClass( value ) : this.removeClass( value ); + } + + if ( jQuery.isFunction( value ) ) { + return this.each(function( i ) { + jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal ); + }); + } + + return this.each(function() { + if ( type === "string" ) { + // toggle individual class names + var className, + i = 0, + self = jQuery( this ), + classNames = value.match( core_rnotwhite ) || []; + + while ( (className = classNames[ i++ ]) ) { + // check each className given, space separated list + if ( self.hasClass( className ) ) { + self.removeClass( className ); + } else { + self.addClass( className ); + } + } + + // Toggle whole class name + } else if ( type === core_strundefined || type === "boolean" ) { + if ( this.className ) { + // store className if set + jQuery._data( this, "__className__", this.className ); + } + + // If the element has a class name or if we're passed "false", + // then remove the whole classname (if there was one, the above saved it). + // Otherwise bring back whatever was previously saved (if anything), + // falling back to the empty string if nothing was stored. + this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || ""; + } + }); + }, + + hasClass: function( selector ) { + var className = " " + selector + " ", + i = 0, + l = this.length; + for ( ; i < l; i++ ) { + if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) { + return true; + } + } + + return false; + }, + + val: function( value ) { + var ret, hooks, isFunction, + elem = this[0]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ]; + + if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) { + return ret; + } + + ret = elem.value; + + return typeof ret === "string" ? + // handle most common string cases + ret.replace(rreturn, "") : + // handle cases where value is null/undef or number + ret == null ? "" : ret; + } + + return; + } + + isFunction = jQuery.isFunction( value ); + + return this.each(function( i ) { + var val; + + if ( this.nodeType !== 1 ) { + return; + } + + if ( isFunction ) { + val = value.call( this, i, jQuery( this ).val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + } else if ( typeof val === "number" ) { + val += ""; + } else if ( jQuery.isArray( val ) ) { + val = jQuery.map(val, function ( value ) { + return value == null ? "" : value + ""; + }); + } + + hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + }); + } +}); + +jQuery.extend({ + valHooks: { + option: { + get: function( elem ) { + // Use proper attribute retrieval(#6932, #12072) + var val = jQuery.find.attr( elem, "value" ); + return val != null ? + val : + elem.text; + } + }, + select: { + get: function( elem ) { + var value, option, + options = elem.options, + index = elem.selectedIndex, + one = elem.type === "select-one" || index < 0, + values = one ? null : [], + max = one ? index + 1 : options.length, + i = index < 0 ? + max : + one ? index : 0; + + // Loop through all the selected options + for ( ; i < max; i++ ) { + option = options[ i ]; + + // oldIE doesn't update selected after form reset (#2551) + if ( ( option.selected || i === index ) && + // Don't return options that are disabled or in a disabled optgroup + ( jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null ) && + ( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + return values; + }, + + set: function( elem, value ) { + var optionSet, option, + options = elem.options, + values = jQuery.makeArray( value ), + i = options.length; + + while ( i-- ) { + option = options[ i ]; + if ( (option.selected = jQuery.inArray( jQuery(option).val(), values ) >= 0) ) { + optionSet = true; + } + } + + // force browsers to behave consistently when non-matching value is set + if ( !optionSet ) { + elem.selectedIndex = -1; + } + return values; + } + } + }, + + attr: function( elem, name, value ) { + var hooks, ret, + nType = elem.nodeType; + + // don't get/set attributes on text, comment and attribute nodes + if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === core_strundefined ) { + return jQuery.prop( elem, name, value ); + } + + // All attributes are lowercase + // Grab necessary hook if one is defined + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + name = name.toLowerCase(); + hooks = jQuery.attrHooks[ name ] || + ( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook ); + } + + if ( value !== undefined ) { + + if ( value === null ) { + jQuery.removeAttr( elem, name ); + + } else if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { + return ret; + + } else { + elem.setAttribute( name, value + "" ); + return value; + } + + } else if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { + return ret; + + } else { + ret = jQuery.find.attr( elem, name ); + + // Non-existent attributes return null, we normalize to undefined + return ret == null ? + undefined : + ret; + } + }, + + removeAttr: function( elem, value ) { + var name, propName, + i = 0, + attrNames = value && value.match( core_rnotwhite ); + + if ( attrNames && elem.nodeType === 1 ) { + while ( (name = attrNames[i++]) ) { + propName = jQuery.propFix[ name ] || name; + + // Boolean attributes get special treatment (#10870) + if ( jQuery.expr.match.bool.test( name ) ) { + // Set corresponding property to false + if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) { + elem[ propName ] = false; + // Support: IE<9 + // Also clear defaultChecked/defaultSelected (if appropriate) + } else { + elem[ jQuery.camelCase( "default-" + name ) ] = + elem[ propName ] = false; + } + + // See #9699 for explanation of this approach (setting first, then removal) + } else { + jQuery.attr( elem, name, "" ); + } + + elem.removeAttribute( getSetAttribute ? name : propName ); + } + } + }, + + attrHooks: { + type: { + set: function( elem, value ) { + if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) { + // Setting the type on a radio button after the value resets the value in IE6-9 + // Reset value to default in case type is set after value during creation + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + } + }, + + propFix: { + "for": "htmlFor", + "class": "className" + }, + + prop: function( elem, name, value ) { + var ret, hooks, notxml, + nType = elem.nodeType; + + // don't get/set properties on text, comment and attribute nodes + if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); + + if ( notxml ) { + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + return hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ? + ret : + ( elem[ name ] = value ); + + } else { + return hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ? + ret : + elem[ name ]; + } + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set + // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + // Use proper attribute retrieval(#12072) + var tabindex = jQuery.find.attr( elem, "tabindex" ); + + return tabindex ? + parseInt( tabindex, 10 ) : + rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? + 0 : + -1; + } + } + } +}); + +// Hooks for boolean attributes +boolHook = { + set: function( elem, value, name ) { + if ( value === false ) { + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) { + // IE<8 needs the *property* name + elem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name ); + + // Use defaultChecked and defaultSelected for oldIE + } else { + elem[ jQuery.camelCase( "default-" + name ) ] = elem[ name ] = true; + } + + return name; + } +}; +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) { + var getter = jQuery.expr.attrHandle[ name ] || jQuery.find.attr; + + jQuery.expr.attrHandle[ name ] = getSetInput && getSetAttribute || !ruseDefault.test( name ) ? + function( elem, name, isXML ) { + var fn = jQuery.expr.attrHandle[ name ], + ret = isXML ? + undefined : + /* jshint eqeqeq: false */ + (jQuery.expr.attrHandle[ name ] = undefined) != + getter( elem, name, isXML ) ? + + name.toLowerCase() : + null; + jQuery.expr.attrHandle[ name ] = fn; + return ret; + } : + function( elem, name, isXML ) { + return isXML ? + undefined : + elem[ jQuery.camelCase( "default-" + name ) ] ? + name.toLowerCase() : + null; + }; +}); + +// fix oldIE attroperties +if ( !getSetInput || !getSetAttribute ) { + jQuery.attrHooks.value = { + set: function( elem, value, name ) { + if ( jQuery.nodeName( elem, "input" ) ) { + // Does not return so that setAttribute is also used + elem.defaultValue = value; + } else { + // Use nodeHook if defined (#1954); otherwise setAttribute is fine + return nodeHook && nodeHook.set( elem, value, name ); + } + } + }; +} + +// IE6/7 do not support getting/setting some attributes with get/setAttribute +if ( !getSetAttribute ) { + + // Use this for any attribute in IE6/7 + // This fixes almost every IE6/7 issue + nodeHook = { + set: function( elem, value, name ) { + // Set the existing or create a new attribute node + var ret = elem.getAttributeNode( name ); + if ( !ret ) { + elem.setAttributeNode( + (ret = elem.ownerDocument.createAttribute( name )) + ); + } + + ret.value = value += ""; + + // Break association with cloned elements by also using setAttribute (#9646) + return name === "value" || value === elem.getAttribute( name ) ? + value : + undefined; + } + }; + jQuery.expr.attrHandle.id = jQuery.expr.attrHandle.name = jQuery.expr.attrHandle.coords = + // Some attributes are constructed with empty-string values when not defined + function( elem, name, isXML ) { + var ret; + return isXML ? + undefined : + (ret = elem.getAttributeNode( name )) && ret.value !== "" ? + ret.value : + null; + }; + jQuery.valHooks.button = { + get: function( elem, name ) { + var ret = elem.getAttributeNode( name ); + return ret && ret.specified ? + ret.value : + undefined; + }, + set: nodeHook.set + }; + + // Set contenteditable to false on removals(#10429) + // Setting to empty string throws an error as an invalid value + jQuery.attrHooks.contenteditable = { + set: function( elem, value, name ) { + nodeHook.set( elem, value === "" ? false : value, name ); + } + }; + + // Set width and height to auto instead of 0 on empty string( Bug #8150 ) + // This is for removals + jQuery.each([ "width", "height" ], function( i, name ) { + jQuery.attrHooks[ name ] = { + set: function( elem, value ) { + if ( value === "" ) { + elem.setAttribute( name, "auto" ); + return value; + } + } + }; + }); +} + + +// Some attributes require a special call on IE +// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +if ( !jQuery.support.hrefNormalized ) { + // href/src property should get the full normalized URL (#10299/#12915) + jQuery.each([ "href", "src" ], function( i, name ) { + jQuery.propHooks[ name ] = { + get: function( elem ) { + return elem.getAttribute( name, 4 ); + } + }; + }); +} + +if ( !jQuery.support.style ) { + jQuery.attrHooks.style = { + get: function( elem ) { + // Return undefined in the case of empty string + // Note: IE uppercases css property names, but if we were to .toLowerCase() + // .cssText, that would destroy case senstitivity in URL's, like in "background" + return elem.style.cssText || undefined; + }, + set: function( elem, value ) { + return ( elem.style.cssText = value + "" ); + } + }; +} + +// Safari mis-reports the default selected property of an option +// Accessing the parent's selectedIndex property fixes it +if ( !jQuery.support.optSelected ) { + jQuery.propHooks.selected = { + get: function( elem ) { + var parent = elem.parentNode; + + if ( parent ) { + parent.selectedIndex; + + // Make sure that it also works with optgroups, see #5701 + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + return null; + } + }; +} + +jQuery.each([ + "tabIndex", + "readOnly", + "maxLength", + "cellSpacing", + "cellPadding", + "rowSpan", + "colSpan", + "useMap", + "frameBorder", + "contentEditable" +], function() { + jQuery.propFix[ this.toLowerCase() ] = this; +}); + +// IE6/7 call enctype encoding +if ( !jQuery.support.enctype ) { + jQuery.propFix.enctype = "encoding"; +} + +// Radios and checkboxes getter/setter +jQuery.each([ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + set: function( elem, value ) { + if ( jQuery.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 ); + } + } + }; + if ( !jQuery.support.checkOn ) { + jQuery.valHooks[ this ].get = function( elem ) { + // Support: Webkit + // "" is returned instead of "on" if a value isn't specified + return elem.getAttribute("value") === null ? "on" : elem.value; + }; + } +}); +var rformElems = /^(?:input|select|textarea)$/i, + rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|contextmenu)|click/, + rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + rtypenamespace = /^([^.]*)(?:\.(.+)|)$/; + +function returnTrue() { + return true; +} + +function returnFalse() { + return false; +} + +function safeActiveElement() { + try { + return document.activeElement; + } catch ( err ) { } +} + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + global: {}, + + add: function( elem, types, handler, data, selector ) { + var tmp, events, t, handleObjIn, + special, eventHandle, handleObj, + handlers, type, namespaces, origType, + elemData = jQuery._data( elem ); + + // Don't attach events to noData or text/comment nodes (but allow plain objects) + if ( !elemData ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + if ( !(events = elemData.events) ) { + events = elemData.events = {}; + } + if ( !(eventHandle = elemData.handle) ) { + eventHandle = elemData.handle = function( e ) { + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== core_strundefined && (!e || jQuery.event.triggered !== e.type) ? + jQuery.event.dispatch.apply( eventHandle.elem, arguments ) : + undefined; + }; + // Add elem as a property of the handle fn to prevent a memory leak with IE non-native events + eventHandle.elem = elem; + } + + // Handle multiple events separated by a space + types = ( types || "" ).match( core_rnotwhite ) || [""]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[t] ) || []; + type = origType = tmp[1]; + namespaces = ( tmp[2] || "" ).split( "." ).sort(); + + // There *must* be a type, no attaching namespace-only handlers + if ( !type ) { + continue; + } + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend({ + type: type, + origType: origType, + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + needsContext: selector && jQuery.expr.match.needsContext.test( selector ), + namespace: namespaces.join(".") + }, handleObjIn ); + + // Init the event handler queue if we're the first + if ( !(handlers = events[ type ]) ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener/attachEvent if the special events handler returns false + if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + // Bind the global event handler to the element + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle, false ); + + } else if ( elem.attachEvent ) { + elem.attachEvent( "on" + type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + // Nullify elem to prevent memory leaks in IE + elem = null; + }, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + var j, handleObj, tmp, + origCount, t, events, + special, handlers, type, + namespaces, origType, + elemData = jQuery.hasData( elem ) && jQuery._data( elem ); + + if ( !elemData || !(events = elemData.events) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = ( types || "" ).match( core_rnotwhite ) || [""]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[t] ) || []; + type = origType = tmp[1]; + namespaces = ( tmp[2] || "" ).split( "." ).sort(); + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector ? special.delegateType : special.bindType ) || type; + handlers = events[ type ] || []; + tmp = tmp[2] && new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ); + + // Remove matching events + origCount = j = handlers.length; + while ( j-- ) { + handleObj = handlers[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !tmp || tmp.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { + handlers.splice( j, 1 ); + + if ( handleObj.selector ) { + handlers.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( origCount && !handlers.length ) { + if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + delete elemData.handle; + + // removeData also checks for emptiness and clears the expando if empty + // so use it instead of delete + jQuery._removeData( elem, "events" ); + } + }, + + trigger: function( event, data, elem, onlyHandlers ) { + var handle, ontype, cur, + bubbleType, special, tmp, i, + eventPath = [ elem || document ], + type = core_hasOwn.call( event, "type" ) ? event.type : event, + namespaces = core_hasOwn.call( event, "namespace" ) ? event.namespace.split(".") : []; + + cur = tmp = elem = elem || document; + + // Don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf(".") >= 0 ) { + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split("."); + type = namespaces.shift(); + namespaces.sort(); + } + ontype = type.indexOf(":") < 0 && "on" + type; + + // Caller can pass in a jQuery.Event object, Object, or just an event type string + event = event[ jQuery.expando ] ? + event : + new jQuery.Event( type, typeof event === "object" && event ); + + // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) + event.isTrigger = onlyHandlers ? 2 : 3; + event.namespace = namespaces.join("."); + event.namespace_re = event.namespace ? + new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) : + null; + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data == null ? + [ event ] : + jQuery.makeArray( data, [ event ] ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + if ( !rfocusMorph.test( bubbleType + type ) ) { + cur = cur.parentNode; + } + for ( ; cur; cur = cur.parentNode ) { + eventPath.push( cur ); + tmp = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( tmp === (elem.ownerDocument || document) ) { + eventPath.push( tmp.defaultView || tmp.parentWindow || window ); + } + } + + // Fire handlers on the event path + i = 0; + while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) { + + event.type = i > 1 ? + bubbleType : + special.bindType || type; + + // jQuery handler + handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + + // Native handler + handle = ontype && cur[ ontype ]; + if ( handle && jQuery.acceptData( cur ) && handle.apply && handle.apply( cur, data ) === false ) { + event.preventDefault(); + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) && + jQuery.acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name name as the event. + // Can't use an .isFunction() check here because IE6/7 fails that test. + // Don't do default actions on window, that's where global variables be (#6170) + if ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + tmp = elem[ ontype ]; + + if ( tmp ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + try { + elem[ type ](); + } catch ( e ) { + // IE<9 dies on focus/blur to hidden element (#1486,#12518) + // only reproducible on winXP IE8 native, not IE9 in IE8 mode + } + jQuery.event.triggered = undefined; + + if ( tmp ) { + elem[ ontype ] = tmp; + } + } + } + } + + return event.result; + }, + + dispatch: function( event ) { + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( event ); + + var i, ret, handleObj, matched, j, + handlerQueue = [], + args = core_slice.call( arguments ), + handlers = ( jQuery._data( this, "events" ) || {} )[ event.type ] || [], + special = jQuery.event.special[ event.type ] || {}; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[0] = event; + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers + handlerQueue = jQuery.event.handlers.call( this, event, handlers ); + + // Run delegates first; they may want to stop propagation beneath us + i = 0; + while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) { + event.currentTarget = matched.elem; + + j = 0; + while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) { + + // Triggered event must either 1) have no namespace, or + // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace). + if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) { + + event.handleObj = handleObj; + event.data = handleObj.data; + + ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler ) + .apply( matched.elem, args ); + + if ( ret !== undefined ) { + if ( (event.result = ret) === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + handlers: function( event, handlers ) { + var sel, handleObj, matches, i, + handlerQueue = [], + delegateCount = handlers.delegateCount, + cur = event.target; + + // Find delegate handlers + // Black-hole SVG instance trees (#13180) + // Avoid non-left-click bubbling in Firefox (#3861) + if ( delegateCount && cur.nodeType && (!event.button || event.type !== "click") ) { + + /* jshint eqeqeq: false */ + for ( ; cur != this; cur = cur.parentNode || this ) { + /* jshint eqeqeq: true */ + + // Don't check non-elements (#13208) + // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) + if ( cur.nodeType === 1 && (cur.disabled !== true || event.type !== "click") ) { + matches = []; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + + // Don't conflict with Object.prototype properties (#13203) + sel = handleObj.selector + " "; + + if ( matches[ sel ] === undefined ) { + matches[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) >= 0 : + jQuery.find( sel, this, null, [ cur ] ).length; + } + if ( matches[ sel ] ) { + matches.push( handleObj ); + } + } + if ( matches.length ) { + handlerQueue.push({ elem: cur, handlers: matches }); + } + } + } + } + + // Add the remaining (directly-bound) handlers + if ( delegateCount < handlers.length ) { + handlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) }); + } + + return handlerQueue; + }, + + fix: function( event ) { + if ( event[ jQuery.expando ] ) { + return event; + } + + // Create a writable copy of the event object and normalize some properties + var i, prop, copy, + type = event.type, + originalEvent = event, + fixHook = this.fixHooks[ type ]; + + if ( !fixHook ) { + this.fixHooks[ type ] = fixHook = + rmouseEvent.test( type ) ? this.mouseHooks : + rkeyEvent.test( type ) ? this.keyHooks : + {}; + } + copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; + + event = new jQuery.Event( originalEvent ); + + i = copy.length; + while ( i-- ) { + prop = copy[ i ]; + event[ prop ] = originalEvent[ prop ]; + } + + // Support: IE<9 + // Fix target property (#1925) + if ( !event.target ) { + event.target = originalEvent.srcElement || document; + } + + // Support: Chrome 23+, Safari? + // Target should not be a text node (#504, #13143) + if ( event.target.nodeType === 3 ) { + event.target = event.target.parentNode; + } + + // Support: IE<9 + // For mouse/key events, metaKey==false if it's undefined (#3368, #11328) + event.metaKey = !!event.metaKey; + + return fixHook.filter ? fixHook.filter( event, originalEvent ) : event; + }, + + // Includes some event props shared by KeyEvent and MouseEvent + props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "), + + fixHooks: {}, + + keyHooks: { + props: "char charCode key keyCode".split(" "), + filter: function( event, original ) { + + // Add which for key events + if ( event.which == null ) { + event.which = original.charCode != null ? original.charCode : original.keyCode; + } + + return event; + } + }, + + mouseHooks: { + props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "), + filter: function( event, original ) { + var body, eventDoc, doc, + button = original.button, + fromElement = original.fromElement; + + // Calculate pageX/Y if missing and clientX/Y available + if ( event.pageX == null && original.clientX != null ) { + eventDoc = event.target.ownerDocument || document; + doc = eventDoc.documentElement; + body = eventDoc.body; + + event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 ); + event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 ); + } + + // Add relatedTarget, if necessary + if ( !event.relatedTarget && fromElement ) { + event.relatedTarget = fromElement === event.target ? original.toElement : fromElement; + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + // Note: button is not normalized, so don't use it + if ( !event.which && button !== undefined ) { + event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); + } + + return event; + } + }, + + special: { + load: { + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + focus: { + // Fire native event if possible so blur/focus sequence is correct + trigger: function() { + if ( this !== safeActiveElement() && this.focus ) { + try { + this.focus(); + return false; + } catch ( e ) { + // Support: IE<9 + // If we error on focus to hidden element (#1486, #12518), + // let .trigger() run the handlers + } + } + }, + delegateType: "focusin" + }, + blur: { + trigger: function() { + if ( this === safeActiveElement() && this.blur ) { + this.blur(); + return false; + } + }, + delegateType: "focusout" + }, + click: { + // For checkbox, fire native event so checked state will be right + trigger: function() { + if ( jQuery.nodeName( this, "input" ) && this.type === "checkbox" && this.click ) { + this.click(); + return false; + } + }, + + // For cross-browser consistency, don't fire native .click() on links + _default: function( event ) { + return jQuery.nodeName( event.target, "a" ); + } + }, + + beforeunload: { + postDispatch: function( event ) { + + // Even when returnValue equals to undefined Firefox will still show alert + if ( event.result !== undefined ) { + event.originalEvent.returnValue = event.result; + } + } + } + }, + + simulate: function( type, elem, event, bubble ) { + // Piggyback on a donor event to simulate a different one. + // Fake originalEvent to avoid donor's stopPropagation, but if the + // simulated event prevents default then we do the same on the donor. + var e = jQuery.extend( + new jQuery.Event(), + event, + { + type: type, + isSimulated: true, + originalEvent: {} + } + ); + if ( bubble ) { + jQuery.event.trigger( e, null, elem ); + } else { + jQuery.event.dispatch.call( elem, e ); + } + if ( e.isDefaultPrevented() ) { + event.preventDefault(); + } + } +}; + +jQuery.removeEvent = document.removeEventListener ? + function( elem, type, handle ) { + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle, false ); + } + } : + function( elem, type, handle ) { + var name = "on" + type; + + if ( elem.detachEvent ) { + + // #8545, #7054, preventing memory leaks for custom events in IE6-8 + // detachEvent needed property on element, by name of that event, to properly expose it to GC + if ( typeof elem[ name ] === core_strundefined ) { + elem[ name ] = null; + } + + elem.detachEvent( name, handle ); + } + }; + +jQuery.Event = function( src, props ) { + // Allow instantiation without the 'new' keyword + if ( !(this instanceof jQuery.Event) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = ( src.defaultPrevented || src.returnValue === false || + src.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || jQuery.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse, + + preventDefault: function() { + var e = this.originalEvent; + + this.isDefaultPrevented = returnTrue; + if ( !e ) { + return; + } + + // If preventDefault exists, run it on the original event + if ( e.preventDefault ) { + e.preventDefault(); + + // Support: IE + // Otherwise set the returnValue property of the original event to false + } else { + e.returnValue = false; + } + }, + stopPropagation: function() { + var e = this.originalEvent; + + this.isPropagationStopped = returnTrue; + if ( !e ) { + return; + } + // If stopPropagation exists, run it on the original event + if ( e.stopPropagation ) { + e.stopPropagation(); + } + + // Support: IE + // Set the cancelBubble property of the original event to true + e.cancelBubble = true; + }, + stopImmediatePropagation: function() { + this.isImmediatePropagationStopped = returnTrue; + this.stopPropagation(); + } +}; + +// Create mouseenter/leave events using mouseover/out and event-time checks +jQuery.each({ + mouseenter: "mouseover", + mouseleave: "mouseout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj; + + // For mousenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || (related !== target && !jQuery.contains( target, related )) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +}); + +// IE submit delegation +if ( !jQuery.support.submitBubbles ) { + + jQuery.event.special.submit = { + setup: function() { + // Only need this for delegated form submit events + if ( jQuery.nodeName( this, "form" ) ) { + return false; + } + + // Lazy-add a submit handler when a descendant form may potentially be submitted + jQuery.event.add( this, "click._submit keypress._submit", function( e ) { + // Node name check avoids a VML-related crash in IE (#9807) + var elem = e.target, + form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined; + if ( form && !jQuery._data( form, "submitBubbles" ) ) { + jQuery.event.add( form, "submit._submit", function( event ) { + event._submit_bubble = true; + }); + jQuery._data( form, "submitBubbles", true ); + } + }); + // return undefined since we don't need an event listener + }, + + postDispatch: function( event ) { + // If form was submitted by the user, bubble the event up the tree + if ( event._submit_bubble ) { + delete event._submit_bubble; + if ( this.parentNode && !event.isTrigger ) { + jQuery.event.simulate( "submit", this.parentNode, event, true ); + } + } + }, + + teardown: function() { + // Only need this for delegated form submit events + if ( jQuery.nodeName( this, "form" ) ) { + return false; + } + + // Remove delegated handlers; cleanData eventually reaps submit handlers attached above + jQuery.event.remove( this, "._submit" ); + } + }; +} + +// IE change delegation and checkbox/radio fix +if ( !jQuery.support.changeBubbles ) { + + jQuery.event.special.change = { + + setup: function() { + + if ( rformElems.test( this.nodeName ) ) { + // IE doesn't fire change on a check/radio until blur; trigger it on click + // after a propertychange. Eat the blur-change in special.change.handle. + // This still fires onchange a second time for check/radio after blur. + if ( this.type === "checkbox" || this.type === "radio" ) { + jQuery.event.add( this, "propertychange._change", function( event ) { + if ( event.originalEvent.propertyName === "checked" ) { + this._just_changed = true; + } + }); + jQuery.event.add( this, "click._change", function( event ) { + if ( this._just_changed && !event.isTrigger ) { + this._just_changed = false; + } + // Allow triggered, simulated change events (#11500) + jQuery.event.simulate( "change", this, event, true ); + }); + } + return false; + } + // Delegated event; lazy-add a change handler on descendant inputs + jQuery.event.add( this, "beforeactivate._change", function( e ) { + var elem = e.target; + + if ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, "changeBubbles" ) ) { + jQuery.event.add( elem, "change._change", function( event ) { + if ( this.parentNode && !event.isSimulated && !event.isTrigger ) { + jQuery.event.simulate( "change", this.parentNode, event, true ); + } + }); + jQuery._data( elem, "changeBubbles", true ); + } + }); + }, + + handle: function( event ) { + var elem = event.target; + + // Swallow native change events from checkbox/radio, we already triggered them above + if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) { + return event.handleObj.handler.apply( this, arguments ); + } + }, + + teardown: function() { + jQuery.event.remove( this, "._change" ); + + return !rformElems.test( this.nodeName ); + } + }; +} + +// Create "bubbling" focus and blur events +if ( !jQuery.support.focusinBubbles ) { + jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler while someone wants focusin/focusout + var attaches = 0, + handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + if ( attaches++ === 0 ) { + document.addEventListener( orig, handler, true ); + } + }, + teardown: function() { + if ( --attaches === 0 ) { + document.removeEventListener( orig, handler, true ); + } + } + }; + }); +} + +jQuery.fn.extend({ + + on: function( types, selector, data, fn, /*INTERNAL*/ one ) { + var type, origFn; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + this.on( type, selector, data, types[ type ], one ); + } + return this; + } + + if ( data == null && fn == null ) { + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return this; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return this.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + }); + }, + one: function( types, selector, data, fn ) { + return this.on( types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each(function() { + jQuery.event.remove( this, types, fn, selector ); + }); + }, + + trigger: function( type, data ) { + return this.each(function() { + jQuery.event.trigger( type, data, this ); + }); + }, + triggerHandler: function( type, data ) { + var elem = this[0]; + if ( elem ) { + return jQuery.event.trigger( type, data, elem, true ); + } + } +}); +var isSimple = /^.[^:#\[\.,]*$/, + rparentsprev = /^(?:parents|prev(?:Until|All))/, + rneedsContext = jQuery.expr.match.needsContext, + // methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend({ + find: function( selector ) { + var i, + ret = [], + self = this, + len = self.length; + + if ( typeof selector !== "string" ) { + return this.pushStack( jQuery( selector ).filter(function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + }) ); + } + + for ( i = 0; i < len; i++ ) { + jQuery.find( selector, self[ i ], ret ); + } + + // Needed because $( selector, context ) becomes $( context ).find( selector ) + ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret ); + ret.selector = this.selector ? this.selector + " " + selector : selector; + return ret; + }, + + has: function( target ) { + var i, + targets = jQuery( target, this ), + len = targets.length; + + return this.filter(function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( this, targets[i] ) ) { + return true; + } + } + }); + }, + + not: function( selector ) { + return this.pushStack( winnow(this, selector || [], true) ); + }, + + filter: function( selector ) { + return this.pushStack( winnow(this, selector || [], false) ); + }, + + is: function( selector ) { + return !!winnow( + this, + + // If this is a positional/relative selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + typeof selector === "string" && rneedsContext.test( selector ) ? + jQuery( selector ) : + selector || [], + false + ).length; + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + ret = [], + pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ? + jQuery( selectors, context || this.context ) : + 0; + + for ( ; i < l; i++ ) { + for ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) { + // Always skip document fragments + if ( cur.nodeType < 11 && (pos ? + pos.index(cur) > -1 : + + // Don't pass non-elements to Sizzle + cur.nodeType === 1 && + jQuery.find.matchesSelector(cur, selectors)) ) { + + cur = ret.push( cur ); + break; + } + } + } + + return this.pushStack( ret.length > 1 ? jQuery.unique( ret ) : ret ); + }, + + // Determine the position of an element within + // the matched set of elements + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1; + } + + // index in selector + if ( typeof elem === "string" ) { + return jQuery.inArray( this[0], jQuery( elem ) ); + } + + // Locate the position of the desired element + return jQuery.inArray( + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[0] : elem, this ); + }, + + add: function( selector, context ) { + var set = typeof selector === "string" ? + jQuery( selector, context ) : + jQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ), + all = jQuery.merge( this.get(), set ); + + return this.pushStack( jQuery.unique(all) ); + }, + + addBack: function( selector ) { + return this.add( selector == null ? + this.prevObject : this.prevObject.filter(selector) + ); + } +}); + +function sibling( cur, dir ) { + do { + cur = cur[ dir ]; + } while ( cur && cur.nodeType !== 1 ); + + return cur; +} + +jQuery.each({ + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return jQuery.dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, i, until ) { + return jQuery.dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return sibling( elem, "nextSibling" ); + }, + prev: function( elem ) { + return sibling( elem, "previousSibling" ); + }, + nextAll: function( elem ) { + return jQuery.dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return jQuery.dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, i, until ) { + return jQuery.dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, i, until ) { + return jQuery.dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem ); + }, + children: function( elem ) { + return jQuery.sibling( elem.firstChild ); + }, + contents: function( elem ) { + return jQuery.nodeName( elem, "iframe" ) ? + elem.contentDocument || elem.contentWindow.document : + jQuery.merge( [], elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var ret = jQuery.map( this, fn, until ); + + if ( name.slice( -5 ) !== "Until" ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + ret = jQuery.filter( selector, ret ); + } + + if ( this.length > 1 ) { + // Remove duplicates + if ( !guaranteedUnique[ name ] ) { + ret = jQuery.unique( ret ); + } + + // Reverse order for parents* and prev-derivatives + if ( rparentsprev.test( name ) ) { + ret = ret.reverse(); + } + } + + return this.pushStack( ret ); + }; +}); + +jQuery.extend({ + filter: function( expr, elems, not ) { + var elem = elems[ 0 ]; + + if ( not ) { + expr = ":not(" + expr + ")"; + } + + return elems.length === 1 && elem.nodeType === 1 ? + jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] : + jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { + return elem.nodeType === 1; + })); + }, + + dir: function( elem, dir, until ) { + var matched = [], + cur = elem[ dir ]; + + while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { + if ( cur.nodeType === 1 ) { + matched.push( cur ); + } + cur = cur[dir]; + } + return matched; + }, + + sibling: function( n, elem ) { + var r = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + r.push( n ); + } + } + + return r; + } +}); + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, not ) { + if ( jQuery.isFunction( qualifier ) ) { + return jQuery.grep( elements, function( elem, i ) { + /* jshint -W018 */ + return !!qualifier.call( elem, i, elem ) !== not; + }); + + } + + if ( qualifier.nodeType ) { + return jQuery.grep( elements, function( elem ) { + return ( elem === qualifier ) !== not; + }); + + } + + if ( typeof qualifier === "string" ) { + if ( isSimple.test( qualifier ) ) { + return jQuery.filter( qualifier, elements, not ); + } + + qualifier = jQuery.filter( qualifier, elements ); + } + + return jQuery.grep( elements, function( elem ) { + return ( jQuery.inArray( elem, qualifier ) >= 0 ) !== not; + }); +} +function createSafeFragment( document ) { + var list = nodeNames.split( "|" ), + safeFrag = document.createDocumentFragment(); + + if ( safeFrag.createElement ) { + while ( list.length ) { + safeFrag.createElement( + list.pop() + ); + } + } + return safeFrag; +} + +var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|" + + "header|hgroup|mark|meter|nav|output|progress|section|summary|time|video", + rinlinejQuery = / jQuery\d+="(?:null|\d+)"/g, + rnoshimcache = new RegExp("<(?:" + nodeNames + ")[\\s/>]", "i"), + rleadingWhitespace = /^\s+/, + rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi, + rtagName = /<([\w:]+)/, + rtbody = /\s*$/g, + + // We have to close these tags to support XHTML (#13200) + wrapMap = { + option: [ 1, "" ], + legend: [ 1, "
", "
" ], + area: [ 1, "", "" ], + param: [ 1, "", "" ], + thead: [ 1, "", "
" ], + tr: [ 2, "", "
" ], + col: [ 2, "", "
" ], + td: [ 3, "", "
" ], + + // IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags, + // unless wrapped in a div with non-breaking characters in front of it. + _default: jQuery.support.htmlSerialize ? [ 0, "", "" ] : [ 1, "X
", "
" ] + }, + safeFragment = createSafeFragment( document ), + fragmentDiv = safeFragment.appendChild( document.createElement("div") ); + +wrapMap.optgroup = wrapMap.option; +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +jQuery.fn.extend({ + text: function( value ) { + return jQuery.access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) ); + }, null, value, arguments.length ); + }, + + append: function() { + return this.domManip( arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.appendChild( elem ); + } + }); + }, + + prepend: function() { + return this.domManip( arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.insertBefore( elem, target.firstChild ); + } + }); + }, + + before: function() { + return this.domManip( arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this ); + } + }); + }, + + after: function() { + return this.domManip( arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + } + }); + }, + + // keepData is for internal use only--do not document + remove: function( selector, keepData ) { + var elem, + elems = selector ? jQuery.filter( selector, this ) : this, + i = 0; + + for ( ; (elem = elems[i]) != null; i++ ) { + + if ( !keepData && elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem ) ); + } + + if ( elem.parentNode ) { + if ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) { + setGlobalEval( getAll( elem, "script" ) ); + } + elem.parentNode.removeChild( elem ); + } + } + + return this; + }, + + empty: function() { + var elem, + i = 0; + + for ( ; (elem = this[i]) != null; i++ ) { + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + } + + // Remove any remaining nodes + while ( elem.firstChild ) { + elem.removeChild( elem.firstChild ); + } + + // If this is a select, ensure that it displays empty (#12336) + // Support: IE<9 + if ( elem.options && jQuery.nodeName( elem, "select" ) ) { + elem.options.length = 0; + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map( function () { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + }); + }, + + html: function( value ) { + return jQuery.access( this, function( value ) { + var elem = this[0] || {}, + i = 0, + l = this.length; + + if ( value === undefined ) { + return elem.nodeType === 1 ? + elem.innerHTML.replace( rinlinejQuery, "" ) : + undefined; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + ( jQuery.support.htmlSerialize || !rnoshimcache.test( value ) ) && + ( jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value ) ) && + !wrapMap[ ( rtagName.exec( value ) || ["", ""] )[1].toLowerCase() ] ) { + + value = value.replace( rxhtmlTag, "<$1>" ); + + try { + for (; i < l; i++ ) { + // Remove element nodes and prevent memory leaks + elem = this[i] || {}; + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch(e) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function() { + var + // Snapshot the DOM in case .domManip sweeps something relevant into its fragment + args = jQuery.map( this, function( elem ) { + return [ elem.nextSibling, elem.parentNode ]; + }), + i = 0; + + // Make the changes, replacing each context element with the new content + this.domManip( arguments, function( elem ) { + var next = args[ i++ ], + parent = args[ i++ ]; + + if ( parent ) { + // Don't use the snapshot next if it has moved (#13810) + if ( next && next.parentNode !== parent ) { + next = this.nextSibling; + } + jQuery( this ).remove(); + parent.insertBefore( elem, next ); + } + // Allow new content to include elements from the context set + }, true ); + + // Force removal if there was no new content (e.g., from empty arguments) + return i ? this : this.remove(); + }, + + detach: function( selector ) { + return this.remove( selector, true ); + }, + + domManip: function( args, callback, allowIntersection ) { + + // Flatten any nested arrays + args = core_concat.apply( [], args ); + + var first, node, hasScripts, + scripts, doc, fragment, + i = 0, + l = this.length, + set = this, + iNoClone = l - 1, + value = args[0], + isFunction = jQuery.isFunction( value ); + + // We can't cloneNode fragments that contain checked, in WebKit + if ( isFunction || !( l <= 1 || typeof value !== "string" || jQuery.support.checkClone || !rchecked.test( value ) ) ) { + return this.each(function( index ) { + var self = set.eq( index ); + if ( isFunction ) { + args[0] = value.call( this, index, self.html() ); + } + self.domManip( args, callback, allowIntersection ); + }); + } + + if ( l ) { + fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, !allowIntersection && this ); + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + if ( first ) { + scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); + hasScripts = scripts.length; + + // Use the original fragment for the last item instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + for ( ; i < l; i++ ) { + node = fragment; + + if ( i !== iNoClone ) { + node = jQuery.clone( node, true, true ); + + // Keep references to cloned scripts for later restoration + if ( hasScripts ) { + jQuery.merge( scripts, getAll( node, "script" ) ); + } + } + + callback.call( this[i], node, i ); + } + + if ( hasScripts ) { + doc = scripts[ scripts.length - 1 ].ownerDocument; + + // Reenable scripts + jQuery.map( scripts, restoreScript ); + + // Evaluate executable scripts on first document insertion + for ( i = 0; i < hasScripts; i++ ) { + node = scripts[ i ]; + if ( rscriptType.test( node.type || "" ) && + !jQuery._data( node, "globalEval" ) && jQuery.contains( doc, node ) ) { + + if ( node.src ) { + // Hope ajax is available... + jQuery._evalUrl( node.src ); + } else { + jQuery.globalEval( ( node.text || node.textContent || node.innerHTML || "" ).replace( rcleanScript, "" ) ); + } + } + } + } + + // Fix #11809: Avoid leaking memory + fragment = first = null; + } + } + + return this; + } +}); + +// Support: IE<8 +// Manipulating tables requires a tbody +function manipulationTarget( elem, content ) { + return jQuery.nodeName( elem, "table" ) && + jQuery.nodeName( content.nodeType === 1 ? content : content.firstChild, "tr" ) ? + + elem.getElementsByTagName("tbody")[0] || + elem.appendChild( elem.ownerDocument.createElement("tbody") ) : + elem; +} + +// Replace/restore the type attribute of script elements for safe DOM manipulation +function disableScript( elem ) { + elem.type = (jQuery.find.attr( elem, "type" ) !== null) + "/" + elem.type; + return elem; +} +function restoreScript( elem ) { + var match = rscriptTypeMasked.exec( elem.type ); + if ( match ) { + elem.type = match[1]; + } else { + elem.removeAttribute("type"); + } + return elem; +} + +// Mark scripts as having already been evaluated +function setGlobalEval( elems, refElements ) { + var elem, + i = 0; + for ( ; (elem = elems[i]) != null; i++ ) { + jQuery._data( elem, "globalEval", !refElements || jQuery._data( refElements[i], "globalEval" ) ); + } +} + +function cloneCopyEvent( src, dest ) { + + if ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) { + return; + } + + var type, i, l, + oldData = jQuery._data( src ), + curData = jQuery._data( dest, oldData ), + events = oldData.events; + + if ( events ) { + delete curData.handle; + curData.events = {}; + + for ( type in events ) { + for ( i = 0, l = events[ type ].length; i < l; i++ ) { + jQuery.event.add( dest, type, events[ type ][ i ] ); + } + } + } + + // make the cloned public data object a copy from the original + if ( curData.data ) { + curData.data = jQuery.extend( {}, curData.data ); + } +} + +function fixCloneNodeIssues( src, dest ) { + var nodeName, e, data; + + // We do not need to do anything for non-Elements + if ( dest.nodeType !== 1 ) { + return; + } + + nodeName = dest.nodeName.toLowerCase(); + + // IE6-8 copies events bound via attachEvent when using cloneNode. + if ( !jQuery.support.noCloneEvent && dest[ jQuery.expando ] ) { + data = jQuery._data( dest ); + + for ( e in data.events ) { + jQuery.removeEvent( dest, e, data.handle ); + } + + // Event data gets referenced instead of copied if the expando gets copied too + dest.removeAttribute( jQuery.expando ); + } + + // IE blanks contents when cloning scripts, and tries to evaluate newly-set text + if ( nodeName === "script" && dest.text !== src.text ) { + disableScript( dest ).text = src.text; + restoreScript( dest ); + + // IE6-10 improperly clones children of object elements using classid. + // IE10 throws NoModificationAllowedError if parent is null, #12132. + } else if ( nodeName === "object" ) { + if ( dest.parentNode ) { + dest.outerHTML = src.outerHTML; + } + + // This path appears unavoidable for IE9. When cloning an object + // element in IE9, the outerHTML strategy above is not sufficient. + // If the src has innerHTML and the destination does not, + // copy the src.innerHTML into the dest.innerHTML. #10324 + if ( jQuery.support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) { + dest.innerHTML = src.innerHTML; + } + + } else if ( nodeName === "input" && manipulation_rcheckableType.test( src.type ) ) { + // IE6-8 fails to persist the checked state of a cloned checkbox + // or radio button. Worse, IE6-7 fail to give the cloned element + // a checked appearance if the defaultChecked value isn't also set + + dest.defaultChecked = dest.checked = src.checked; + + // IE6-7 get confused and end up setting the value of a cloned + // checkbox/radio button to an empty string instead of "on" + if ( dest.value !== src.value ) { + dest.value = src.value; + } + + // IE6-8 fails to return the selected option to the default selected + // state when cloning options + } else if ( nodeName === "option" ) { + dest.defaultSelected = dest.selected = src.defaultSelected; + + // IE6-8 fails to set the defaultValue to the correct value when + // cloning other types of input fields + } else if ( nodeName === "input" || nodeName === "textarea" ) { + dest.defaultValue = src.defaultValue; + } +} + +jQuery.each({ + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + i = 0, + ret = [], + insert = jQuery( selector ), + last = insert.length - 1; + + for ( ; i <= last; i++ ) { + elems = i === last ? this : this.clone(true); + jQuery( insert[i] )[ original ]( elems ); + + // Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get() + core_push.apply( ret, elems.get() ); + } + + return this.pushStack( ret ); + }; +}); + +function getAll( context, tag ) { + var elems, elem, + i = 0, + found = typeof context.getElementsByTagName !== core_strundefined ? context.getElementsByTagName( tag || "*" ) : + typeof context.querySelectorAll !== core_strundefined ? context.querySelectorAll( tag || "*" ) : + undefined; + + if ( !found ) { + for ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) { + if ( !tag || jQuery.nodeName( elem, tag ) ) { + found.push( elem ); + } else { + jQuery.merge( found, getAll( elem, tag ) ); + } + } + } + + return tag === undefined || tag && jQuery.nodeName( context, tag ) ? + jQuery.merge( [ context ], found ) : + found; +} + +// Used in buildFragment, fixes the defaultChecked property +function fixDefaultChecked( elem ) { + if ( manipulation_rcheckableType.test( elem.type ) ) { + elem.defaultChecked = elem.checked; + } +} + +jQuery.extend({ + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var destElements, node, clone, i, srcElements, + inPage = jQuery.contains( elem.ownerDocument, elem ); + + if ( jQuery.support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( "<" + elem.nodeName + ">" ) ) { + clone = elem.cloneNode( true ); + + // IE<=8 does not properly clone detached, unknown element nodes + } else { + fragmentDiv.innerHTML = elem.outerHTML; + fragmentDiv.removeChild( clone = fragmentDiv.firstChild ); + } + + if ( (!jQuery.support.noCloneEvent || !jQuery.support.noCloneChecked) && + (elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) { + + // We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2 + destElements = getAll( clone ); + srcElements = getAll( elem ); + + // Fix all IE cloning issues + for ( i = 0; (node = srcElements[i]) != null; ++i ) { + // Ensure that the destination node is not null; Fixes #9587 + if ( destElements[i] ) { + fixCloneNodeIssues( node, destElements[i] ); + } + } + } + + // Copy the events from the original to the clone + if ( dataAndEvents ) { + if ( deepDataAndEvents ) { + srcElements = srcElements || getAll( elem ); + destElements = destElements || getAll( clone ); + + for ( i = 0; (node = srcElements[i]) != null; i++ ) { + cloneCopyEvent( node, destElements[i] ); + } + } else { + cloneCopyEvent( elem, clone ); + } + } + + // Preserve script evaluation history + destElements = getAll( clone, "script" ); + if ( destElements.length > 0 ) { + setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); + } + + destElements = srcElements = node = null; + + // Return the cloned set + return clone; + }, + + buildFragment: function( elems, context, scripts, selection ) { + var j, elem, contains, + tmp, tag, tbody, wrap, + l = elems.length, + + // Ensure a safe fragment + safe = createSafeFragment( context ), + + nodes = [], + i = 0; + + for ( ; i < l; i++ ) { + elem = elems[ i ]; + + if ( elem || elem === 0 ) { + + // Add nodes directly + if ( jQuery.type( elem ) === "object" ) { + jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); + + // Convert non-html into a text node + } else if ( !rhtml.test( elem ) ) { + nodes.push( context.createTextNode( elem ) ); + + // Convert html into DOM nodes + } else { + tmp = tmp || safe.appendChild( context.createElement("div") ); + + // Deserialize a standard representation + tag = ( rtagName.exec( elem ) || ["", ""] )[1].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + + tmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, "<$1>" ) + wrap[2]; + + // Descend through wrappers to the right content + j = wrap[0]; + while ( j-- ) { + tmp = tmp.lastChild; + } + + // Manually add leading whitespace removed by IE + if ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) { + nodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) ); + } + + // Remove IE's autoinserted from table fragments + if ( !jQuery.support.tbody ) { + + // String was a , *may* have spurious + elem = tag === "table" && !rtbody.test( elem ) ? + tmp.firstChild : + + // String was a bare or + wrap[1] === "
" && !rtbody.test( elem ) ? + tmp : + 0; + + j = elem && elem.childNodes.length; + while ( j-- ) { + if ( jQuery.nodeName( (tbody = elem.childNodes[j]), "tbody" ) && !tbody.childNodes.length ) { + elem.removeChild( tbody ); + } + } + } + + jQuery.merge( nodes, tmp.childNodes ); + + // Fix #12392 for WebKit and IE > 9 + tmp.textContent = ""; + + // Fix #12392 for oldIE + while ( tmp.firstChild ) { + tmp.removeChild( tmp.firstChild ); + } + + // Remember the top-level container for proper cleanup + tmp = safe.lastChild; + } + } + } + + // Fix #11356: Clear elements from fragment + if ( tmp ) { + safe.removeChild( tmp ); + } + + // Reset defaultChecked for any radios and checkboxes + // about to be appended to the DOM in IE 6/7 (#8060) + if ( !jQuery.support.appendChecked ) { + jQuery.grep( getAll( nodes, "input" ), fixDefaultChecked ); + } + + i = 0; + while ( (elem = nodes[ i++ ]) ) { + + // #4087 - If origin and destination elements are the same, and this is + // that element, do not do anything + if ( selection && jQuery.inArray( elem, selection ) !== -1 ) { + continue; + } + + contains = jQuery.contains( elem.ownerDocument, elem ); + + // Append to fragment + tmp = getAll( safe.appendChild( elem ), "script" ); + + // Preserve script evaluation history + if ( contains ) { + setGlobalEval( tmp ); + } + + // Capture executables + if ( scripts ) { + j = 0; + while ( (elem = tmp[ j++ ]) ) { + if ( rscriptType.test( elem.type || "" ) ) { + scripts.push( elem ); + } + } + } + } + + tmp = null; + + return safe; + }, + + cleanData: function( elems, /* internal */ acceptData ) { + var elem, type, id, data, + i = 0, + internalKey = jQuery.expando, + cache = jQuery.cache, + deleteExpando = jQuery.support.deleteExpando, + special = jQuery.event.special; + + for ( ; (elem = elems[i]) != null; i++ ) { + + if ( acceptData || jQuery.acceptData( elem ) ) { + + id = elem[ internalKey ]; + data = id && cache[ id ]; + + if ( data ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + + // Remove cache only if it was not already removed by jQuery.event.remove + if ( cache[ id ] ) { + + delete cache[ id ]; + + // IE does not allow us to delete expando properties from nodes, + // nor does it have a removeAttribute function on Document nodes; + // we must handle all of these cases + if ( deleteExpando ) { + delete elem[ internalKey ]; + + } else if ( typeof elem.removeAttribute !== core_strundefined ) { + elem.removeAttribute( internalKey ); + + } else { + elem[ internalKey ] = null; + } + + core_deletedIds.push( id ); + } + } + } + } + }, + + _evalUrl: function( url ) { + return jQuery.ajax({ + url: url, + type: "GET", + dataType: "script", + async: false, + global: false, + "throws": true + }); + } +}); +jQuery.fn.extend({ + wrapAll: function( html ) { + if ( jQuery.isFunction( html ) ) { + return this.each(function(i) { + jQuery(this).wrapAll( html.call(this, i) ); + }); + } + + if ( this[0] ) { + // The elements to wrap the target around + var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true); + + if ( this[0].parentNode ) { + wrap.insertBefore( this[0] ); + } + + wrap.map(function() { + var elem = this; + + while ( elem.firstChild && elem.firstChild.nodeType === 1 ) { + elem = elem.firstChild; + } + + return elem; + }).append( this ); + } + + return this; + }, + + wrapInner: function( html ) { + if ( jQuery.isFunction( html ) ) { + return this.each(function(i) { + jQuery(this).wrapInner( html.call(this, i) ); + }); + } + + return this.each(function() { + var self = jQuery( this ), + contents = self.contents(); + + if ( contents.length ) { + contents.wrapAll( html ); + + } else { + self.append( html ); + } + }); + }, + + wrap: function( html ) { + var isFunction = jQuery.isFunction( html ); + + return this.each(function(i) { + jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html ); + }); + }, + + unwrap: function() { + return this.parent().each(function() { + if ( !jQuery.nodeName( this, "body" ) ) { + jQuery( this ).replaceWith( this.childNodes ); + } + }).end(); + } +}); +var iframe, getStyles, curCSS, + ralpha = /alpha\([^)]*\)/i, + ropacity = /opacity\s*=\s*([^)]*)/, + rposition = /^(top|right|bottom|left)$/, + // swappable if display is none or starts with table except "table", "table-cell", or "table-caption" + // see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display + rdisplayswap = /^(none|table(?!-c[ea]).+)/, + rmargin = /^margin/, + rnumsplit = new RegExp( "^(" + core_pnum + ")(.*)$", "i" ), + rnumnonpx = new RegExp( "^(" + core_pnum + ")(?!px)[a-z%]+$", "i" ), + rrelNum = new RegExp( "^([+-])=(" + core_pnum + ")", "i" ), + elemdisplay = { BODY: "block" }, + + cssShow = { position: "absolute", visibility: "hidden", display: "block" }, + cssNormalTransform = { + letterSpacing: 0, + fontWeight: 400 + }, + + cssExpand = [ "Top", "Right", "Bottom", "Left" ], + cssPrefixes = [ "Webkit", "O", "Moz", "ms" ]; + +// return a css property mapped to a potentially vendor prefixed property +function vendorPropName( style, name ) { + + // shortcut for names that are not vendor prefixed + if ( name in style ) { + return name; + } + + // check for vendor prefixed names + var capName = name.charAt(0).toUpperCase() + name.slice(1), + origName = name, + i = cssPrefixes.length; + + while ( i-- ) { + name = cssPrefixes[ i ] + capName; + if ( name in style ) { + return name; + } + } + + return origName; +} + +function isHidden( elem, el ) { + // isHidden might be called from jQuery#filter function; + // in that case, element will be second argument + elem = el || elem; + return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); +} + +function showHide( elements, show ) { + var display, elem, hidden, + values = [], + index = 0, + length = elements.length; + + for ( ; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + + values[ index ] = jQuery._data( elem, "olddisplay" ); + display = elem.style.display; + if ( show ) { + // Reset the inline display of this element to learn if it is + // being hidden by cascaded rules or not + if ( !values[ index ] && display === "none" ) { + elem.style.display = ""; + } + + // Set elements which have been overridden with display: none + // in a stylesheet to whatever the default browser style is + // for such an element + if ( elem.style.display === "" && isHidden( elem ) ) { + values[ index ] = jQuery._data( elem, "olddisplay", css_defaultDisplay(elem.nodeName) ); + } + } else { + + if ( !values[ index ] ) { + hidden = isHidden( elem ); + + if ( display && display !== "none" || !hidden ) { + jQuery._data( elem, "olddisplay", hidden ? display : jQuery.css( elem, "display" ) ); + } + } + } + } + + // Set the display of most of the elements in a second loop + // to avoid the constant reflow + for ( index = 0; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + if ( !show || elem.style.display === "none" || elem.style.display === "" ) { + elem.style.display = show ? values[ index ] || "" : "none"; + } + } + + return elements; +} + +jQuery.fn.extend({ + css: function( name, value ) { + return jQuery.access( this, function( elem, name, value ) { + var len, styles, + map = {}, + i = 0; + + if ( jQuery.isArray( name ) ) { + styles = getStyles( elem ); + len = name.length; + + for ( ; i < len; i++ ) { + map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); + } + + return map; + } + + return value !== undefined ? + jQuery.style( elem, name, value ) : + jQuery.css( elem, name ); + }, name, value, arguments.length > 1 ); + }, + show: function() { + return showHide( this, true ); + }, + hide: function() { + return showHide( this ); + }, + toggle: function( state ) { + if ( typeof state === "boolean" ) { + return state ? this.show() : this.hide(); + } + + return this.each(function() { + if ( isHidden( this ) ) { + jQuery( this ).show(); + } else { + jQuery( this ).hide(); + } + }); + } +}); + +jQuery.extend({ + // Add in style property hooks for overriding the default + // behavior of getting and setting a style property + cssHooks: { + opacity: { + get: function( elem, computed ) { + if ( computed ) { + // We should always get a number back from opacity + var ret = curCSS( elem, "opacity" ); + return ret === "" ? "1" : ret; + } + } + } + }, + + // Don't automatically add "px" to these possibly-unitless properties + cssNumber: { + "columnCount": true, + "fillOpacity": true, + "fontWeight": true, + "lineHeight": true, + "opacity": true, + "order": true, + "orphans": true, + "widows": true, + "zIndex": true, + "zoom": true + }, + + // Add in properties whose names you wish to fix before + // setting or getting the value + cssProps: { + // normalize float css property + "float": jQuery.support.cssFloat ? "cssFloat" : "styleFloat" + }, + + // Get and set the style property on a DOM Node + style: function( elem, name, value, extra ) { + // Don't set styles on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { + return; + } + + // Make sure that we're working with the right name + var ret, type, hooks, + origName = jQuery.camelCase( name ), + style = elem.style; + + name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) ); + + // gets hook for the prefixed version + // followed by the unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // Check if we're setting a value + if ( value !== undefined ) { + type = typeof value; + + // convert relative number strings (+= or -=) to relative numbers. #7345 + if ( type === "string" && (ret = rrelNum.exec( value )) ) { + value = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) ); + // Fixes bug #9237 + type = "number"; + } + + // Make sure that NaN and null values aren't set. See: #7116 + if ( value == null || type === "number" && isNaN( value ) ) { + return; + } + + // If a number was passed in, add 'px' to the (except for certain CSS properties) + if ( type === "number" && !jQuery.cssNumber[ origName ] ) { + value += "px"; + } + + // Fixes #8908, it can be done more correctly by specifing setters in cssHooks, + // but it would mean to define eight (for every problematic property) identical functions + if ( !jQuery.support.clearCloneStyle && value === "" && name.indexOf("background") === 0 ) { + style[ name ] = "inherit"; + } + + // If a hook was provided, use that value, otherwise just set the specified value + if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) { + + // Wrapped to prevent IE from throwing errors when 'invalid' values are provided + // Fixes bug #5509 + try { + style[ name ] = value; + } catch(e) {} + } + + } else { + // If a hook was provided get the non-computed value from there + if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) { + return ret; + } + + // Otherwise just get the value from the style object + return style[ name ]; + } + }, + + css: function( elem, name, extra, styles ) { + var num, val, hooks, + origName = jQuery.camelCase( name ); + + // Make sure that we're working with the right name + name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) ); + + // gets hook for the prefixed version + // followed by the unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // If a hook was provided get the computed value from there + if ( hooks && "get" in hooks ) { + val = hooks.get( elem, true, extra ); + } + + // Otherwise, if a way to get the computed value exists, use that + if ( val === undefined ) { + val = curCSS( elem, name, styles ); + } + + //convert "normal" to computed value + if ( val === "normal" && name in cssNormalTransform ) { + val = cssNormalTransform[ name ]; + } + + // Return, converting to number if forced or a qualifier was provided and val looks numeric + if ( extra === "" || extra ) { + num = parseFloat( val ); + return extra === true || jQuery.isNumeric( num ) ? num || 0 : val; + } + return val; + } +}); + +// NOTE: we've included the "window" in window.getComputedStyle +// because jsdom on node.js will break without it. +if ( window.getComputedStyle ) { + getStyles = function( elem ) { + return window.getComputedStyle( elem, null ); + }; + + curCSS = function( elem, name, _computed ) { + var width, minWidth, maxWidth, + computed = _computed || getStyles( elem ), + + // getPropertyValue is only needed for .css('filter') in IE9, see #12537 + ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined, + style = elem.style; + + if ( computed ) { + + if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) { + ret = jQuery.style( elem, name ); + } + + // A tribute to the "awesome hack by Dean Edwards" + // Chrome < 17 and Safari 5.0 uses "computed value" instead of "used value" for margin-right + // Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels + // this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values + if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) { + + // Remember the original values + width = style.width; + minWidth = style.minWidth; + maxWidth = style.maxWidth; + + // Put in the new values to get a computed value out + style.minWidth = style.maxWidth = style.width = ret; + ret = computed.width; + + // Revert the changed values + style.width = width; + style.minWidth = minWidth; + style.maxWidth = maxWidth; + } + } + + return ret; + }; +} else if ( document.documentElement.currentStyle ) { + getStyles = function( elem ) { + return elem.currentStyle; + }; + + curCSS = function( elem, name, _computed ) { + var left, rs, rsLeft, + computed = _computed || getStyles( elem ), + ret = computed ? computed[ name ] : undefined, + style = elem.style; + + // Avoid setting ret to empty string here + // so we don't default to auto + if ( ret == null && style && style[ name ] ) { + ret = style[ name ]; + } + + // From the awesome hack by Dean Edwards + // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291 + + // If we're not dealing with a regular pixel number + // but a number that has a weird ending, we need to convert it to pixels + // but not position css attributes, as those are proportional to the parent element instead + // and we can't measure the parent instead because it might trigger a "stacking dolls" problem + if ( rnumnonpx.test( ret ) && !rposition.test( name ) ) { + + // Remember the original values + left = style.left; + rs = elem.runtimeStyle; + rsLeft = rs && rs.left; + + // Put in the new values to get a computed value out + if ( rsLeft ) { + rs.left = elem.currentStyle.left; + } + style.left = name === "fontSize" ? "1em" : ret; + ret = style.pixelLeft + "px"; + + // Revert the changed values + style.left = left; + if ( rsLeft ) { + rs.left = rsLeft; + } + } + + return ret === "" ? "auto" : ret; + }; +} + +function setPositiveNumber( elem, value, subtract ) { + var matches = rnumsplit.exec( value ); + return matches ? + // Guard against undefined "subtract", e.g., when used as in cssHooks + Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) : + value; +} + +function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) { + var i = extra === ( isBorderBox ? "border" : "content" ) ? + // If we already have the right measurement, avoid augmentation + 4 : + // Otherwise initialize for horizontal or vertical properties + name === "width" ? 1 : 0, + + val = 0; + + for ( ; i < 4; i += 2 ) { + // both box models exclude margin, so add it if we want it + if ( extra === "margin" ) { + val += jQuery.css( elem, extra + cssExpand[ i ], true, styles ); + } + + if ( isBorderBox ) { + // border-box includes padding, so remove it if we want content + if ( extra === "content" ) { + val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + } + + // at this point, extra isn't border nor margin, so remove border + if ( extra !== "margin" ) { + val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } else { + // at this point, extra isn't content, so add padding + val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + + // at this point, extra isn't content nor padding, so add border + if ( extra !== "padding" ) { + val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } + } + + return val; +} + +function getWidthOrHeight( elem, name, extra ) { + + // Start with offset property, which is equivalent to the border-box value + var valueIsBorderBox = true, + val = name === "width" ? elem.offsetWidth : elem.offsetHeight, + styles = getStyles( elem ), + isBorderBox = jQuery.support.boxSizing && jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; + + // some non-html elements return undefined for offsetWidth, so check for null/undefined + // svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285 + // MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668 + if ( val <= 0 || val == null ) { + // Fall back to computed then uncomputed css if necessary + val = curCSS( elem, name, styles ); + if ( val < 0 || val == null ) { + val = elem.style[ name ]; + } + + // Computed unit is not pixels. Stop here and return. + if ( rnumnonpx.test(val) ) { + return val; + } + + // we need the check for style in case a browser which returns unreliable values + // for getComputedStyle silently falls back to the reliable elem.style + valueIsBorderBox = isBorderBox && ( jQuery.support.boxSizingReliable || val === elem.style[ name ] ); + + // Normalize "", auto, and prepare for extra + val = parseFloat( val ) || 0; + } + + // use the active box-sizing model to add/subtract irrelevant styles + return ( val + + augmentWidthOrHeight( + elem, + name, + extra || ( isBorderBox ? "border" : "content" ), + valueIsBorderBox, + styles + ) + ) + "px"; +} + +// Try to determine the default display value of an element +function css_defaultDisplay( nodeName ) { + var doc = document, + display = elemdisplay[ nodeName ]; + + if ( !display ) { + display = actualDisplay( nodeName, doc ); + + // If the simple way fails, read from inside an iframe + if ( display === "none" || !display ) { + // Use the already-created iframe if possible + iframe = ( iframe || + jQuery("