Ext.query()和Ext.get()的區別,Ext.query()類似於jquery的DOM選擇器
Ext.get() 和 Ext.query() 取元素方式
想要利用ExtJS的庫函式對DOM進行各類操作,就要得到Element型別的物件,但是Ext.get()取到的雖然是Element,但是引數只能是id,如果大家對jQuery的selector方式很喜歡和崇拜,那麼就一定要學習Ext.get()和Ext.query()的組合方式。
前面寫的get()和query()我都省略引數了,先看看文件中的函式原型:
Ext.get( Mixed el ) : Element
Parameters:
el : Mixed
The id of the node, a DOM Node or an existing Element.
Returns:
Element
The Element object
Ext.query( String path, [Node root] ) : Array
Parameters:
path : String
The selector/xpath query
root : Node
(optional) The start of the query (defaults to document).
Returns:
Array
query函式返回的其實是一個DOM Node的陣列,而Ext.get的引數el可以是DOM Node,哈哈,明白了嗎?就是說要實現最靈活的取法,應該用query取到DOM Node然後交給get去變成Element。也就是:
var x=Ext.query(QueryStr);
//我為什麼不寫成行內函數形式?因為這裡的x只能是一個元素,而上面那句的x是一個Array,大家自己轉換和處理吧
var y=Ext.get(x);
那麼接下來需要介紹QueryStr的格式(其實和jQuery裡的selector的格式很像啦),至於獲得Element後可以幹些啥,大家自己去看ExtJS文件裡關於Ext.Element的說明,我就不摘過來了。
先給一個html程式碼,好做演示說明
(1)根據標記取:// 這個查詢會返回有兩個元素的陣列因為查詢選中對整個文件的所有span標籤。
Ext.query("span");
// 這個查詢會返回有一個元素的陣列因為查詢顧及到了foo這個id。
Ext.query("span", "foo");// 這會返回有一個元素的陣列,內容為div標籤下的p標籤
Ext.query("div p");
// 這會返回有兩個元素的陣列,內容為div標籤下的span標籤
Ext.query("div span");(2)根據ID取:// 這個查詢會返回包含我們foo div一個元素的陣列!
Ext.query("#foo"); //或者直接Ext.get("foo");(3)根據class的Name去取:Ext.query(".foo");// 這個查詢會返回5個元素的陣列。
Ext.query("*[class]"); // 結果: [body#ext-gen2.ext-gecko, div#bar.foo, span.bar, div#foo.bar, span.bar](4)萬能法去取:(用這個方法可以通過id、name、class、css等取)// 這會得到class等於“bar”的所有元素
Ext.query("*[class=bar]");
// 這會得到class不等於“bar”的所有元素
Ext.query("*[class!=bar]");
// 這會得到class從“b”字頭開始的所有元素
Ext.query("*[class^=b]");
//這會得到class由“r”結尾的所有元素
Ext.query("*[class$=r]");
//這會得到在class中抽出“a”字元的所有元素
Ext.query("*[class*=a]");//這會得到name等於“BlueLotus7”的所有元素
Ext.query("*[name=BlueLotus7]");
我們換個html程式碼:<html>
<head>
</head>
<body>
<div id="bar" class="foo" style="color:red;">
我是一個div ==> 我的id是: bar, 我的class: foo
<span class="bar" style="color:pink;">I'm a span within the div with a foo class</span>
<a href="http://www.extjs.com" target="_blank" style="color:yellow;">An ExtJs link with a blank target!</a>
</div>
<div id="foo" class="bar" style="color:fushia;">
my id: foo, my class: bar
<p>I'm a P tag within the foo div</p>
<span class="bar" style="color:brown;">I'm a span within the div with a bar class</span>
<a href="#" style="color:green;">An internal link</a>
</div>
</body>
</html>// 獲取所以紅色的元素
Ext.query("*{color=red}"); // [div#bar.foo]
// 獲取所有粉紅顏色的並且是有紅色子元素的元素
Ext.query("*{color=red} *{color=pink}"); // [span.bar]
// 獲取所有不是紅色文字的元素
Ext.query("*{color!=red}"); // [html, head, script firebug.js, link, body#ext-gen2.ext-gecko, script ext-base.js, script ext-core.js, span.bar, a www.extjs.com, div#foo.bar, p, span.bar, a test.html#]
// 獲取所有顏色屬性是從“yel”開始的元素
Ext.query("*{color^=yel}"); // [a www.extjs.com]
// 獲取所有顏色屬性是以“ow”結束的元素
Ext.query("*{color$=ow}"); // [a www.extjs.com]
// 獲取所有顏色屬性包含“ow”字元的元素
Ext.query("*{color*=ow}"); // [a www.extjs.com, span.bar](5)偽操作符取法換個html:<html>
<head>
</head>
<body>
<div id="bar" class="foo" style="color:red; border: 2px dotted red; margin:5px; padding:5px;">
我是一個div ==> 我的id是bar,我的class是foo
<span class="bar" style="color:pink;">這裡是span元素,外層的div元素有foo的class屬性</span>
<a href="http://www.extjs.com" target="_blank" style="color:yellow;">設定blank=target的ExtJS連結</a>
</div>
<div id="foo" class="bar" style="color:fushia; border: 2px dotted black; margin:5px; padding:5px;">
這裡的id是:foo,這裡的class是bar
<p>“foo” div包圍下的p元素。</p>
<span class="bar" style="color:brown;">這裡是一個span元素,外層是div包圍著,span還有一個bar的class屬性。</span>
<a href="#" style="color:green;">內建連結</a>
</div>
<div style="border:2px dotted pink; margin:5px; padding:5px;">
<ul>
<li>條目 #1</li>
<li>條目 #2</li>
<li>條目 #3</li>
<li>條目 #4 帶有<a href="#">連結</a></li>
</ul>
<table style="border:1px dotted black;">
<tr style="color:pink">
<td>第一行,第一列</td>
<td>第一行,第二列</td>
</tr>
<tr style="color:brown">
<td colspan="2">第二行,已合併單元格!</td>
</tr>
<tr>
<td>第三行,第一列</td>
<td>第三行,第二列</td>
</tr>
</table>
</div>
<div style="border:2px dotted red; margin:5px; padding:5px;">
<form>
<input id="chked" type="checkbox" checked/><label for="chked">已點選</label>
<br /><br />
<input id="notChked" type="checkbox" /><label for="notChked">not me brotha!</label>
</form>
</div>
</body>
</html>//SPAN元素為其父元素的第一個子元素
Ext.query("span:first-child"); // [span.bar]
//A元素為其父元素的最後一個子元素
Ext.query("a:last-child") // [a www.extjs.com, a test.html#]
//SPAN元素為其父元素的第2個子元素(由1開始的個數)
Ext.query("span:nth-child(2)") // [span.bar]
//TR元素為其父元素的奇數個數的子元素
Ext.query("tr:nth-child(odd)") // [tr, tr]
//LI元素為其父元素的奇數個數的子元素
Ext.query("li:nth-child(even)") // [li, li]
//返回A元素,A元素為其父元素的唯一子元素
Ext.query("a:only-child") // [a test.html#]
//返回所有選中的(checked)的INPUT元素
Ext.query("input:checked") // [input#chked on]
//返回第一個的TR元素
Ext.query("tr:first") // [tr]
//返回最後一個的INPUT元素
Ext.query("input:last") // [input#notChked on]
//返回第二個的TD元素
Ext.query("td:nth(2)") // [td]
//返回每一個包含“within”字串的DIV
Ext.query("div:contains(within)") // [div#bar.foo, div#foo.bar]
//返回沒有包含FORM子元素以外的那些DIV
Ext.query("div:not(form)") [div#bar.foo, div#foo.bar, div]
//返回包含有A元素的那些DIV集合
Ext.query("div:has(a)") // [div#bar.foo, div#foo.bar, div]
//返回接著會繼續有TD的那些TD集合。尤其一個地方是,如果使用了colspan屬性的TD便會忽略
Ext.query("td:next(td)") // [td, td]
//返回居前於INPUT元素的那些LABEL元素集合
Ext.query("label:prev(input)") //[label, label]
<html>
<body>
<div id="bar" class="foo">
I'm a div ==> my id: bar, my class: foo
<span class="bar">I'm a span within the div with a foo class</span>
<a href="http://www.extjs.com" target="_blank">An ExtJs link</a>
</div>
<div id="foo" class="bar">
my id: foo, my class: bar
<p>I'm a P tag within the foo div</p>
<span class="bar">I'm a span within the div with a bar class</span>
<a href="#">An internal link</a>
</div>
<div name="BlueLotus7">BlueLotus7@126.com</div>
</body>
</html>
相關文章
- dom選擇方法的區別
- jQuery入門-DOM/$/選擇器jQuery
- jQuery子選擇器和後代選擇器區別簡單介紹jQuery
- HTML DOM querySelectorAll() 代替 jquery的 $('') CSS選擇器HTMLjQueryCSS
- input和:input選擇器的區別
- 類似gitbook的wiki選擇Git
- 關於jQuery中的選擇器jQuery
- 區別 Jquery物件和Dom物件jQuery物件
- Flutter 實現類似TabPicker省市區選擇Flutter
- Jquery的選擇器jQuery
- js選擇物件和jq選擇物件的區別JS物件
- CSS偽類與偽元素選擇器區別CSS
- jquery中的選擇器jQuery
- jQuery常用的選擇器jQuery
- jquery物件和DOM物件的區別及互相轉化jQuery物件
- jQuery選擇器——基本選擇器jQuery
- CSS樣式中的通用選擇器和偽類選擇器CSS
- nth-of-type()和nth-child()選擇器的區別
- JQuery選擇器——可見性篩選選擇器和屬性篩選選擇器jQuery
- jQuery選擇器——層次選擇器jQuery
- DOM元素的選擇
- jQuery選擇器jQuery
- jQuery 選擇器jQuery
- jQuery dom元素層級匹配選擇器簡單介紹jQuery
- CSS選擇器筆記,element element和element > element 的區別CSS筆記
- jquery中attr和prop的區別+jquery實現全選全不選jQuery
- jQuery----函式和選擇器jQuery函式
- jquery中dom節點操作方法empty和remove的區別jQueryREM
- jQuery選擇器之層次選擇器jQuery
- jQuery選擇器——基本過濾選擇器jQuery
- JQuery this和$(this)的區別jQuery
- jquery $(this) 和this的區別jQuery
- jQuery的基礎操作——選擇器jQuery
- 002---選擇器(標籤選擇器、類選擇器、id選擇器、偽類選擇器、萬用字元選擇器)字元
- jQuery選擇器中的大於號>作用是什麼jQuery
- jQuery選擇器(下)jQuery
- jQuery 選擇器效率jQuery
- jQuery :last選擇器jQueryAST