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

中间件编程

开发平台:

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.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.      * @param {Boolean} unique (optional) True to create a unique Ext.Element for each child (defaults to false, which creates a single shared flyweight object)
  67.      * @return {CompositeElement/CompositeElementLite} The composite element
  68.      */
  69.     select : function(selector, unique){
  70.         return Ext.Element.select(selector, unique, this.dom);
  71.     },
  72.     /**
  73.      * Selects child nodes based on the passed CSS selector (the selector should not contain an id).
  74.      * @param {String} selector The CSS selector
  75.      * @return {Array} An array of the matched nodes
  76.      */
  77.     query : function(selector, unique){
  78.         return DQ.select(selector, this.dom);
  79.     },
  80.     /**
  81.      * Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).
  82.      * @param {String} selector The CSS selector
  83.      * @param {Boolean} returnDom (optional) True to return the DOM node instead of Ext.Element (defaults to false)
  84.      * @return {HTMLElement/Ext.Element} The child Ext.Element (or DOM node if returnDom = true)
  85.      */
  86.     child : function(selector, returnDom){
  87.         var n = DQ.selectNode(selector, this.dom);
  88.         return returnDom ? n : GET(n);
  89.     },
  90.     /**
  91.      * Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id).
  92.      * @param {String} selector The CSS selector
  93.      * @param {Boolean} returnDom (optional) True to return the DOM node instead of Ext.Element (defaults to false)
  94.      * @return {HTMLElement/Ext.Element} The child Ext.Element (or DOM node if returnDom = true)
  95.      */
  96.     down : function(selector, returnDom){
  97.         var n = DQ.selectNode(" > " + selector, this.dom);
  98.         return returnDom ? n : GET(n);
  99.     },
  100.  /**
  101.      * Gets the parent node for this element, optionally chaining up trying to match a selector
  102.      * @param {String} selector (optional) Find a parent node that matches the passed simple selector
  103.      * @param {Boolean} returnDom (optional) True to return a raw dom node instead of an Ext.Element
  104.      * @return {Ext.Element/HTMLElement} The parent node or null
  105.  */
  106.     parent : function(selector, returnDom){
  107.         return this.matchNode(PARENTNODE, PARENTNODE, selector, returnDom);
  108.     },
  109.      /**
  110.      * Gets the next sibling, skipping text nodes
  111.      * @param {String} selector (optional) Find the next sibling that matches the passed simple selector
  112.      * @param {Boolean} returnDom (optional) True to return a raw dom node instead of an Ext.Element
  113.      * @return {Ext.Element/HTMLElement} The next sibling or null
  114.  */
  115.     next : function(selector, returnDom){
  116.         return this.matchNode(NEXTSIBLING, NEXTSIBLING, selector, returnDom);
  117.     },
  118.     /**
  119.      * Gets the previous sibling, skipping text nodes
  120.      * @param {String} selector (optional) Find the previous sibling that matches the passed simple selector
  121.      * @param {Boolean} returnDom (optional) True to return a raw dom node instead of an Ext.Element
  122.      * @return {Ext.Element/HTMLElement} The previous sibling or null
  123.  */
  124.     prev : function(selector, returnDom){
  125.         return this.matchNode(PREVIOUSSIBLING, PREVIOUSSIBLING, selector, returnDom);
  126.     },
  127.     /**
  128.      * Gets the first child, skipping text nodes
  129.      * @param {String} selector (optional) Find the next sibling that matches the passed simple selector
  130.      * @param {Boolean} returnDom (optional) True to return a raw dom node instead of an Ext.Element
  131.      * @return {Ext.Element/HTMLElement} The first child or null
  132.  */
  133.     first : function(selector, returnDom){
  134.         return this.matchNode(NEXTSIBLING, 'firstChild', selector, returnDom);
  135.     },
  136.     /**
  137.      * Gets the last child, skipping text nodes
  138.      * @param {String} selector (optional) Find the previous sibling that matches the passed simple selector
  139.      * @param {Boolean} returnDom (optional) True to return a raw dom node instead of an Ext.Element
  140.      * @return {Ext.Element/HTMLElement} The last child or null
  141.  */
  142.     last : function(selector, returnDom){
  143.         return this.matchNode(PREVIOUSSIBLING, 'lastChild', selector, returnDom);
  144.     },
  145.     
  146.     matchNode : function(dir, start, selector, returnDom){
  147.         var n = this.dom[start];
  148.         while(n){
  149.             if(n.nodeType == 1 && (!selector || DQ.is(n, selector))){
  150.                 return !returnDom ? GET(n) : n;
  151.             }
  152.             n = n[dir];
  153.         }
  154.         return null;
  155.     }
  156.     }
  157. }());