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

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(function(){
  5. var PARENTNODE = 'parentNode',
  6. NEXTSIBLING = 'nextSibling',
  7. PREVIOUSSIBLING = 'previousSibling',
  8. DQ = Ext.DomQuery,
  9. GET = Ext.get;
  10. return {
  11. /**
  12.      * Looks at this node and then at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
  13.      * @param {String} selector The simple selector to test
  14.      * @param {Number/Mixed} maxDepth (optional) The max depth to search as a number or element (defaults to 50 || document.body)
  15.      * @param {Boolean} returnEl (optional) True to return a Ext.Element object instead of DOM node
  16.      * @return {HTMLElement} The matching DOM node (or null if no match was found)
  17.      */
  18.     findParent : function(simpleSelector, maxDepth, returnEl){
  19.         var p = this.dom,
  20.          b = document.body, 
  21.          depth = 0,          
  22.          stopEl;         
  23.             if(Ext.isGecko && Object.prototype.toString.call(p) == '[object XULElement]') {
  24.                 return null;
  25.             }
  26.         maxDepth = maxDepth || 50;
  27.         if (isNaN(maxDepth)) {
  28.             stopEl = Ext.getDom(maxDepth);
  29.             maxDepth = Number.MAX_VALUE;
  30.         }
  31.         while(p && p.nodeType == 1 && depth < maxDepth && p != b && p != stopEl){
  32.             if(DQ.is(p, simpleSelector)){
  33.                 return returnEl ? GET(p) : p;
  34.             }
  35.             depth++;
  36.             p = p.parentNode;
  37.         }
  38.         return null;
  39.     },
  40.     /**
  41.      * Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
  42.      * @param {String} selector The simple selector to test
  43.      * @param {Number/Mixed} maxDepth (optional) The max depth to
  44.             search as a number or element (defaults to 10 || document.body)
  45.      * @param {Boolean} returnEl (optional) True to return a Ext.Element object instead of DOM node
  46.      * @return {HTMLElement} The matching DOM node (or null if no match was found)
  47.      */
  48.     findParentNode : function(simpleSelector, maxDepth, returnEl){
  49.         var p = Ext.fly(this.dom.parentNode, '_internal');
  50.         return p ? p.findParent(simpleSelector, maxDepth, returnEl) : null;
  51.     },
  52.     /**
  53.      * Walks up the dom looking for a parent node that matches the passed simple selector (e.g. div.some-class or span:first-child).
  54.      * This is a shortcut for findParentNode() that always returns an Ext.Element.
  55.      * @param {String} selector The simple selector to test
  56.      * @param {Number/Mixed} maxDepth (optional) The max depth to
  57.             search as a number or element (defaults to 10 || document.body)
  58.      * @return {Ext.Element} The matching DOM node (or null if no match was found)
  59.      */
  60.     up : function(simpleSelector, maxDepth){
  61.         return this.findParentNode(simpleSelector, maxDepth, true);
  62.     },
  63.     /**
  64.      * Creates a {@link Ext.CompositeElement} for child nodes based on the passed CSS selector (the selector should not contain an id).
  65.      * @param {String} selector The CSS selector
  66.      * @return {CompositeElement/CompositeElementLite} The composite element
  67.      */
  68.     select : function(selector){
  69.         return Ext.Element.select(selector, this.dom);
  70.     },
  71.     /**
  72.      * Selects child nodes based on the passed CSS selector (the selector should not contain an id).
  73.      * @param {String} selector The CSS selector
  74.      * @return {Array} An array of the matched nodes
  75.      */
  76.     query : function(selector){
  77.         return DQ.select(selector, this.dom);
  78.     },
  79.     /**
  80.      * Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).
  81.      * @param {String} selector The CSS selector
  82.      * @param {Boolean} returnDom (optional) True to return the DOM node instead of Ext.Element (defaults to false)
  83.      * @return {HTMLElement/Ext.Element} The child Ext.Element (or DOM node if returnDom = true)
  84.      */
  85.     child : function(selector, returnDom){
  86.         var n = DQ.selectNode(selector, this.dom);
  87.         return returnDom ? n : GET(n);
  88.     },
  89.     /**
  90.      * Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id).
  91.      * @param {String} selector The CSS selector
  92.      * @param {Boolean} returnDom (optional) True to return the DOM node instead of Ext.Element (defaults to false)
  93.      * @return {HTMLElement/Ext.Element} The child Ext.Element (or DOM node if returnDom = true)
  94.      */
  95.     down : function(selector, returnDom){
  96.         var n = DQ.selectNode(" > " + selector, this.dom);
  97.         return returnDom ? n : GET(n);
  98.     },
  99.  /**
  100.      * Gets the parent node for this element, optionally chaining up trying to match a selector
  101.      * @param {String} selector (optional) Find a parent node that matches the passed simple selector
  102.      * @param {Boolean} returnDom (optional) True to return a raw dom node instead of an Ext.Element
  103.      * @return {Ext.Element/HTMLElement} The parent node or null
  104.  */
  105.     parent : function(selector, returnDom){
  106.         return this.matchNode(PARENTNODE, PARENTNODE, selector, returnDom);
  107.     },
  108.      /**
  109.      * Gets the next sibling, skipping text nodes
  110.      * @param {String} selector (optional) Find the next sibling that matches the passed simple selector
  111.      * @param {Boolean} returnDom (optional) True to return a raw dom node instead of an Ext.Element
  112.      * @return {Ext.Element/HTMLElement} The next sibling or null
  113.  */
  114.     next : function(selector, returnDom){
  115.         return this.matchNode(NEXTSIBLING, NEXTSIBLING, selector, returnDom);
  116.     },
  117.     /**
  118.      * Gets the previous sibling, skipping text nodes
  119.      * @param {String} selector (optional) Find the previous sibling that matches the passed simple selector
  120.      * @param {Boolean} returnDom (optional) True to return a raw dom node instead of an Ext.Element
  121.      * @return {Ext.Element/HTMLElement} The previous sibling or null
  122.  */
  123.     prev : function(selector, returnDom){
  124.         return this.matchNode(PREVIOUSSIBLING, PREVIOUSSIBLING, selector, returnDom);
  125.     },
  126.     /**
  127.      * Gets the first child, skipping text nodes
  128.      * @param {String} selector (optional) Find the next sibling that matches the passed simple selector
  129.      * @param {Boolean} returnDom (optional) True to return a raw dom node instead of an Ext.Element
  130.      * @return {Ext.Element/HTMLElement} The first child or null
  131.  */
  132.     first : function(selector, returnDom){
  133.         return this.matchNode(NEXTSIBLING, 'firstChild', selector, returnDom);
  134.     },
  135.     /**
  136.      * Gets the last child, skipping text nodes
  137.      * @param {String} selector (optional) Find the previous sibling that matches the passed simple selector
  138.      * @param {Boolean} returnDom (optional) True to return a raw dom node instead of an Ext.Element
  139.      * @return {Ext.Element/HTMLElement} The last child or null
  140.  */
  141.     last : function(selector, returnDom){
  142.         return this.matchNode(PREVIOUSSIBLING, 'lastChild', selector, returnDom);
  143.     },
  144.     
  145.     matchNode : function(dir, start, selector, returnDom){
  146.         var n = this.dom[start];
  147.         while(n){
  148.             if(n.nodeType == 1 && (!selector || DQ.is(n, selector))){
  149.                 return !returnDom ? GET(n) : n;
  150.             }
  151.             n = n[dir];
  152.         }
  153.         return null;
  154.     }
  155.     }
  156. }());