f4b84b27cc83078b2613142e69d5c98602b6e61b
[roojs1] / docs / symbols / Roo.DomQuery.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
3
4 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
6         <head>
7                 <meta http-equiv="content-type" content="text/html; charset=undefined" />
8                 <meta name="generator" content="JsDoc Toolkit" />
9                 
10                 
11                 <title>JsDoc Reference - Roo.DomQuery</title>
12                 
13                 
14         <link rel="stylesheet" type="text/css" href="../../css/roojs.css" />            
15         <link rel="stylesheet" type="text/css" href="../default.css" />
16         
17         
18         <script type="text/javascript" src="../page.js">
19         
20         </script>
21          
22                 
23         </head>
24
25         <body onload="RooDocsPage.onload();">
26          
27         
28 <div class="body-wrap">
29
30     <!-- ============================== links to methods. ================================= --> 
31
32     <div class="top-tools">
33     <!--
34         <a class="inner-link" href="#Roo.DomQuery-props"><img src="resources/s.gif" class="item-icon icon-prop">Properties</a>
35         <a class="inner-link" href="#Roo.DomQuery-methods"><img src="resources/s.gif" class="item-icon icon-method">Methods</a>
36         <a class="inner-link" href="#Roo.DomQuery-events"><img src="resources/s.gif" class="item-icon icon-event">Events</a>
37         <a class="inner-link" href="#Roo.DomQuery-configs"><img src="resources/s.gif" class="item-icon icon-config">Config Options</a>
38         <a class="bookmark" href="NEED_TO_CREATE_DIRECT_LINK_HREF"><img src="resources/s.gif" class="item-icon icon-fav">Direct Link</a>
39         -->
40     </div>
41
42     
43 <!-- ============================== inheritance Block. ================================= -->    
44         
45 <!-- ============================== class title / details ============================ -->
46     
47     
48     <h1 class="classTitle">
49                                 
50                                 Namespace Roo.DomQuery
51                         </h1>
52                         
53     <table cellspacing="0" class="class-summary-table">
54         
55                 <tr><td class="label">Package:</td><td class="hd-info">Roo</td></tr>
56         
57         <tr><td class="label">Defined In:</td><td class="hd-info">
58                         
59                                         <a href="./src/Roo_DomQuery.js.html">Roo/DomQuery.js</a>.
60                         
61         </td></tr>
62         <tr><td class="label">Class:</td><td class="hd-info">DomQuery</td></tr>
63         
64         
65         
66         
67     </table>
68
69     
70 <!-- ============================== class summary ========================== -->                        
71     <div class="description">
72         Provides high performance selector/xpath processing by compiling queries into reusable functions. New pseudo classes and matchers can be plugged. It works on HTML and XML documents (if a content node is passed in).<br/><p><br/>DomQuery supports most of the <a href="http://www.w3.org/TR/2005/WD-css3-selectors-20051215/">CSS3 selectors spec</a>, along with some custom selectors and basic XPath.</p><br/><br/><p><br/>All selectors, attribute filters and pseudos below can be combined infinitely in any order. For example "div.foo:nth-child(odd)[<b>foo</b>=bar].bar:first" would be a perfectly valid selector. Node filters are processed in the order in which they appear, which allows you to optimize your queries for your document structure.<br/></p><br/><h4>Element Selectors:</h4><br/><ul class="list"><br/>    <li> <b>*</b> any element</li><br/>    <li> <b>E</b> an element with the tag E</li><br/>    <li> <b>E F</b> All descendent elements of E that have the tag F</li><br/>    <li> <b>E > F</b> or <b>E/F</b> all direct children elements of E that have the tag F</li><br/>    <li> <b>E + F</b> all elements with the tag F that are immediately preceded by an element with the tag E</li><br/>    <li> <b>E ~ F</b> all elements with the tag F that are preceded by a sibling element with the tag E</li><br/></ul><br/><h4>Attribute Selectors:</h4><br/><p>The use of @ and quotes are optional. For example, div[<b>foo</b>='bar'] is also a valid attribute selector.</p><br/><ul class="list"><br/>    <li> <b>E[foo]</b> has an attribute "foo"</li><br/>    <li> <b>E[foo=bar]</b> has an attribute "foo" that equals "bar"</li><br/>    <li> <b>E[foo^=bar]</b> has an attribute "foo" that starts with "bar"</li><br/>    <li> <b>E[foo$=bar]</b> has an attribute "foo" that ends with "bar"</li><br/>    <li> <b>E[foo*=bar]</b> has an attribute "foo" that contains the substring "bar"</li><br/>    <li> <b>E[foo%=2]</b> has an attribute "foo" that is evenly divisible by 2</li><br/>    <li> <b>E[foo!=bar]</b> has an attribute "foo" that does not equal "bar"</li><br/></ul><br/><h4>Pseudo Classes:</h4><br/><ul class="list"><br/>    <li> <b>E:first-child</b> E is the first child of its parent</li><br/>    <li> <b>E:last-child</b> E is the last child of its parent</li><br/>    <li> <b>E:nth-child(<i>n</i>)</b> E is the <i>n</i>th child of its parent (1 based as per the spec)</li><br/>    <li> <b>E:nth-child(odd)</b> E is an odd child of its parent</li><br/>    <li> <b>E:nth-child(even)</b> E is an even child of its parent</li><br/>    <li> <b>E:only-child</b> E is the only child of its parent</li><br/>    <li> <b>E:checked</b> E is an element that is has a checked attribute that is true (e.g. a radio or checkbox) </li><br/>    <li> <b>E:first</b> the first E in the resultset</li><br/>    <li> <b>E:last</b> the last E in the resultset</li><br/>    <li> <b>E:nth(<i>n</i>)</b> the <i>n</i>th E in the resultset (1 based)</li><br/>    <li> <b>E:odd</b> shortcut for :nth-child(odd)</li><br/>    <li> <b>E:even</b> shortcut for :nth-child(even)</li><br/>    <li> <b>E:contains(foo)</b> E's innerHTML contains the substring "foo"</li><br/>    <li> <b>E:nodeValue(foo)</b> E contains a textNode with a nodeValue that equals "foo"</li><br/>    <li> <b>E:not(S)</b> an E element that does not match simple selector S</li><br/>    <li> <b>E:has(S)</b> an E element that has a descendent that matches simple selector S</li><br/>    <li> <b>E:next(S)</b> an E element whose next sibling matches simple selector S</li><br/>    <li> <b>E:prev(S)</b> an E element whose previous sibling matches simple selector S</li><br/></ul><br/><h4>CSS Value Selectors:</h4><br/><ul class="list"><br/>    <li> <b>E{display=none}</b> css value "display" that equals "none"</li><br/>    <li> <b>E{display^=none}</b> css value "display" that starts with "none"</li><br/>    <li> <b>E{display$=none}</b> css value "display" that ends with "none"</li><br/>    <li> <b>E{display*=none}</b> css value "display" that contains the substring "none"</li><br/>    <li> <b>E{display%=2}</b> css value "display" that is evenly divisible by 2</li><br/>    <li> <b>E{display!=none}</b> css value "display" that does not equal "none"</li><br/></ul>
73     </div>
74
75         
76 <!-- ============================== Class comment block... ========================== -->                                       
77
78 <div class="comments">
79         <b>Class Comments / Notes</B> =>  
80         <u onclick="parent.CommentDialog.showCommentId = 'Roo.DomQuery';">[Add Your comment/notes about this class]</u>
81         <br/>
82         <iframe frameborder="0"  id="comments-Roo" style="border: none;width:100%;" 
83                 src="/blog.php/GtkDjsComments/Roo.DomQuery.html"></iframe>
84 </div>
85         
86
87                 
88 <!-- ============================== config options ========================== -->                                               
89                  
90     
91     
92                 
93     <div class="hr"></div>
94     <a id="Roo.DomQuery-configs"></a>
95                 
96     
97     
98      <table cellspacing="0" class="member-table">
99       <caption class="Empty">Config Options - Has None</caption>
100      </table>
101     
102     
103      
104                 
105   
106   
107   
108   
109   
110   
111   
112   
113   <!-- ============================== public properties ==================== -->        
114   
115   
116   
117     <a id="Roo.DomQuery-props"></a>      
118     
119     
120
121     
122     
123      <table cellspacing="0" class="member-table">
124       <caption class="Empty">Public Properties - Has None</caption>
125      </table>
126     
127     
128      
129     
130   <!-- ============================== methods summary / details ======================== -->
131   
132   
133   <a id="Roo.DomQuery-methods"></a>
134         <!-- constructor?? -->
135         
136         <!-- static's first 
137         
138         
139         -->
140         
141         <!-- then dynamics first -->
142         
143   
144   
145     
146     
147      <table cellspacing="0" class="member-table">
148       <caption class="Empty">Public Methods - Has None</caption>
149      </table>
150     
151     
152     
153   
154   <!-- ============================== events summary / details ======================== -->
155   
156   
157   <a id="Roo.DomQuery-events"></a>
158     
159   
160         
161    
162     
163      <table cellspacing="0" class="member-table">
164       <caption class="Empty">Events - Has None</caption>
165      </table>
166     
167     
168   
169     
170     
171   
172   
173   
174  
175 <!-- ============================== footer ================================= -->
176                 <div class="fineprint" style="clear:both">
177                         
178                         Documentation generated by <a href="http://www.akbkhome.com" target="_blankt">Introspection Doc Generator</a>  on Mon Sep 22 2014 18:10:18 GMT+0800 (HKT)
179                         Based on 
180                         <a href="http://www.jsdoctoolkit.org/" target="_blank">JsDoc Toolkit</a>  
181                 </div>
182         </body>
183 </html>