Element.insertion-more.js
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:2k
源码类别:

中间件编程

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.0.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ /**
  2.  * @class Ext.Element
  3.  */
  4. Ext.apply(Ext.Element.prototype, function() {
  5. var GETDOM = Ext.getDom,
  6. GET = Ext.get,
  7. DH = Ext.DomHelper;
  8. return {
  9. /**
  10.      * Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element
  11.      * @param {Mixed/Object/Array} el The id, element to insert or a DomHelper config to create and insert *or* an array of any of those.
  12.      * @param {String} where (optional) 'before' or 'after' defaults to before
  13.      * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Ext.Element
  14.      * @return {Ext.Element} the inserted Element
  15.      */
  16.     insertSibling: function(el, where, returnDom){
  17.         var me = this,
  18.          rt;
  19.         
  20.         if(Ext.isArray(el)){            
  21.             Ext.each(el, function(e) {
  22.             rt = me.insertSibling(e, where, returnDom);
  23.             });
  24.             return rt;
  25.         }
  26.                 
  27.         where = (where || 'before').toLowerCase();
  28.         el = el || {};
  29.        
  30.             if(el.nodeType || el.dom){
  31.                 rt = me.dom.parentNode.insertBefore(GETDOM(el), where == 'before' ? me.dom : me.dom.nextSibling);
  32.                 if (!returnDom) {
  33.                     rt = GET(rt);
  34.                 }
  35.             }else{
  36.                 if (where == 'after' && !me.dom.nextSibling) {
  37.                     rt = DH.append(me.dom.parentNode, el, !returnDom);
  38.                 } else {                    
  39.                     rt = DH[where == 'after' ? 'insertAfter' : 'insertBefore'](me.dom, el, !returnDom);
  40.                 }
  41.             }
  42.         return rt;
  43.     }
  44.     };
  45. }());