Element.insertion-more.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:2k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.1.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. If an array is passed, the last inserted element is returned.
  15.      */
  16.     insertSibling: function(el, where, returnDom){
  17.         var me = this,
  18.          rt,
  19.                 isAfter = (where || 'before').toLowerCase() == 'after',
  20.                 insertEl;
  21.         
  22.         if(Ext.isArray(el)){
  23.                 insertEl = me;
  24.             Ext.each(el, function(e) {
  25.             rt = Ext.fly(insertEl, '_internal').insertSibling(e, where, returnDom);
  26.                     if(isAfter){
  27.                         insertEl = rt;
  28.                     }
  29.             });
  30.             return rt;
  31.         }
  32.                 
  33.         el = el || {};
  34.        
  35.             if(el.nodeType || el.dom){
  36.                 rt = me.dom.parentNode.insertBefore(GETDOM(el), isAfter ? me.dom.nextSibling : me.dom);
  37.                 if (!returnDom) {
  38.                     rt = GET(rt);
  39.                 }
  40.             }else{
  41.                 if (isAfter && !me.dom.nextSibling) {
  42.                     rt = DH.append(me.dom.parentNode, el, !returnDom);
  43.                 } else {                    
  44.                     rt = DH[isAfter ? 'insertAfter' : 'insertBefore'](me.dom, el, !returnDom);
  45.                 }
  46.             }
  47.         return rt;
  48.     }
  49.     };
  50. }());