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

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.Element.addMethods(
  5. function() {
  6. var GETDOM = Ext.getDom,
  7. GET = Ext.get,
  8. DH = Ext.DomHelper;
  9. return {
  10.     /**
  11.      * Appends the passed element(s) to this element
  12.      * @param {String/HTMLElement/Array/Element/CompositeElement} el
  13.      * @return {Ext.Element} this
  14.      */
  15.     appendChild: function(el){        
  16.         return GET(el).appendTo(this);        
  17.     },
  18.     /**
  19.      * Appends this element to the passed element
  20.      * @param {Mixed} el The new parent element
  21.      * @return {Ext.Element} this
  22.      */
  23.     appendTo: function(el){        
  24.         GETDOM(el).appendChild(this.dom);        
  25.         return this;
  26.     },
  27.     /**
  28.      * Inserts this element before the passed element in the DOM
  29.      * @param {Mixed} el The element before which this element will be inserted
  30.      * @return {Ext.Element} this
  31.      */
  32.     insertBefore: function(el){             
  33.         (el = GETDOM(el)).parentNode.insertBefore(this.dom, el);
  34.         return this;
  35.     },
  36.     /**
  37.      * Inserts this element after the passed element in the DOM
  38.      * @param {Mixed} el The element to insert after
  39.      * @return {Ext.Element} this
  40.      */
  41.     insertAfter: function(el){
  42.         (el = GETDOM(el)).parentNode.insertBefore(this.dom, el.nextSibling);
  43.         return this;
  44.     },
  45.     /**
  46.      * Inserts (or creates) an element (or DomHelper config) as the first child of this element
  47.      * @param {Mixed/Object} el The id or element to insert or a DomHelper config to create and insert
  48.      * @return {Ext.Element} The new child
  49.      */
  50.     insertFirst: function(el, returnDom){
  51.             el = el || {};
  52.             if(el.nodeType || el.dom || typeof el == 'string'){ // element
  53.                 el = GETDOM(el);
  54.                 this.dom.insertBefore(el, this.dom.firstChild);
  55.                 return !returnDom ? GET(el) : el;
  56.             }else{ // dh config
  57.                 return this.createChild(el, this.dom.firstChild, returnDom);
  58.             }
  59.         },
  60.     /**
  61.      * Replaces the passed element with this element
  62.      * @param {Mixed} el The element to replace
  63.      * @return {Ext.Element} this
  64.      */
  65.     replace: function(el){
  66.         el = GET(el);
  67.         this.insertBefore(el);
  68.         el.remove();
  69.         return this;
  70.     },
  71.     /**
  72.      * Replaces this element with the passed element
  73.      * @param {Mixed/Object} el The new element or a DomHelper config of an element to create
  74.      * @return {Ext.Element} this
  75.      */
  76.     replaceWith: function(el){
  77.     var me = this;
  78.                 
  79.             if(el.nodeType || el.dom || typeof el == 'string'){
  80.                 el = GETDOM(el);
  81.                 me.dom.parentNode.insertBefore(el, me.dom);
  82.             }else{
  83.                 el = DH.insertBefore(me.dom, el);
  84.             }
  85.         
  86.         delete Ext.elCache[me.id];
  87.         Ext.removeNode(me.dom);      
  88.         me.id = Ext.id(me.dom = el);
  89.         Ext.Element.addToCache(me.isFlyweight ? new Ext.Element(me.dom) : me);     
  90.             return me;
  91.     },
  92.     
  93. /**
  94.  * Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element.
  95.  * @param {Object} config DomHelper element config object.  If no tag is specified (e.g., {tag:'input'}) then a div will be
  96.  * automatically generated with the specified attributes.
  97.  * @param {HTMLElement} insertBefore (optional) a child element of this element
  98.  * @param {Boolean} returnDom (optional) true to return the dom node instead of creating an Element
  99.  * @return {Ext.Element} The new child element
  100.  */
  101. createChild: function(config, insertBefore, returnDom){
  102.     config = config || {tag:'div'};
  103.     return insertBefore ? 
  104.         DH.insertBefore(insertBefore, config, returnDom !== true) :
  105.         DH[!this.dom.firstChild ? 'overwrite' : 'append'](this.dom, config,  returnDom !== true);
  106. },
  107. /**
  108.  * Creates and wraps this element with another element
  109.  * @param {Object} config (optional) DomHelper element config object for the wrapper element or null for an empty div
  110.  * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Ext.Element
  111.  * @return {HTMLElement/Element} The newly created wrapper element
  112.  */
  113. wrap: function(config, returnDom){        
  114.     var newEl = DH.insertBefore(this.dom, config || {tag: "div"}, !returnDom);
  115.     newEl.dom ? newEl.dom.appendChild(this.dom) : newEl.appendChild(this.dom);
  116.     return newEl;
  117. },
  118. /**
  119.  * Inserts an html fragment into this element
  120.  * @param {String} where Where to insert the html in relation to this element - beforeBegin, afterBegin, beforeEnd, afterEnd.
  121.  * @param {String} html The HTML fragment
  122.  * @param {Boolean} returnEl (optional) True to return an Ext.Element (defaults to false)
  123.  * @return {HTMLElement/Ext.Element} The inserted node (or nearest related if more than 1 inserted)
  124.  */
  125. insertHtml : function(where, html, returnEl){
  126.     var el = DH.insertHtml(where, this.dom, html);
  127.     return returnEl ? Ext.get(el) : el;
  128. }
  129. }
  130. }());