欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Ext.get() 和 Ext.query()組合使用實(shí)現(xiàn)最靈活的取元素方式

 更新時(shí)間:2011年09月26日 22:22:32   作者:  
想要利用ExtJS的庫(kù)函數(shù)對(duì)DOM進(jìn)行各類操作,就要得到Element類型的對(duì)象,但是Ext.get()取到的雖然是Element,但是參數(shù)只能是id,如果大家對(duì)jQuery的selector方式很喜歡和崇拜,那么就一定要學(xué)習(xí)Ext.get()和Ext.query()的組合方式。
前面寫的get()和query()我都省略參數(shù)了,先看看文檔中的函數(shù)原型:
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函數(shù)返回的其實(shí)是一個(gè)DOM Node的數(shù)組,而Ext.get的參數(shù)el可以是DOM Node,哈哈,明白了嗎?就是說(shuō)要實(shí)現(xiàn)最靈活的取法,應(yīng)該用query取到DOM Node然后交給get去變成Element。也就是:
var x=Ext.query(QueryStr);
//我為什么不寫成內(nèi)聯(lián)函數(shù)形式?因?yàn)檫@里的x只能是一個(gè)元素,而上面那句的x是一個(gè)Array,大家自己轉(zhuǎn)換和處理吧
var y=Ext.get(x);
那么接下來(lái)需要介紹QueryStr的格式(其實(shí)和jQuery里的selector的格式很像啦),至于獲得Element后可以干些啥,大家自己去看ExtJS文檔里關(guān)于Ext.Element的說(shuō)明,我就不摘過(guò)來(lái)了。
先給一個(gè)html代碼,好做演示說(shuō)明
復(fù)制代碼 代碼如下:

<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 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>
</hmlt>

(1)根據(jù)標(biāo)記?。?/ 這個(gè)查詢會(huì)返回有兩個(gè)元素的數(shù)組因?yàn)椴樵冞x中對(duì)整個(gè)文檔的所有span標(biāo)簽。
Ext.query("span");
// 這個(gè)查詢會(huì)返回有一個(gè)元素的數(shù)組因?yàn)椴樵冾櫦暗搅薴oo這個(gè)id。
Ext.query("span", "foo");// 這會(huì)返回有一個(gè)元素的數(shù)組,內(nèi)容為div標(biāo)簽下的p標(biāo)簽
Ext.query("div p");
// 這會(huì)返回有兩個(gè)元素的數(shù)組,內(nèi)容為div標(biāo)簽下的span標(biāo)簽
Ext.query("div span");(2)根據(jù)ID?。?/ 這個(gè)查詢會(huì)返回包含我們foo div一個(gè)元素的數(shù)組!
Ext.query("#foo"); //或者直接Ext.get("foo");(3)根據(jù)class的Name去?。篍xt.query(".foo");// 這個(gè)查詢會(huì)返回5個(gè)元素的數(shù)組。
Ext.query("*[class]"); // 結(jié)果: [body#ext-gen2.ext-gecko, div#bar.foo, span.bar, div#foo.bar, span.bar](4)萬(wàn)能法去取:(用這個(gè)方法可以通過(guò)id、name、class、css等取)// 這會(huì)得到class等于“bar”的所有元素
Ext.query("*[class=bar]");
// 這會(huì)得到class不等于“bar”的所有元素
Ext.query("*[class!=bar]");
// 這會(huì)得到class從“b”字頭開(kāi)始的所有元素
Ext.query("*[class^=b]");
//這會(huì)得到class由“r”結(jié)尾的所有元素
Ext.query("*[class$=r]");
//這會(huì)得到在class中抽出“a”字符的所有元素
Ext.query("*[class*=a]");//這會(huì)得到name等于“BlueLotus7”的所有元素
Ext.query("*[name=BlueLotus7]");
我們換個(gè)html代碼:
復(fù)制代碼 代碼如下:

<html>
<head>
</head>
<body>
<div id="bar" class="foo" style="color:red;">
我是一個(gè)div ==> 我的id是: bar, 我的class: foo
<span class="bar" style="color:pink;">I'm a span within the div with a foo class</span>
<a 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”開(kāi)始的元素
Ext.query("*{color^=yel}"); // [a www.extjs.com]
// 獲取所有顏色屬性是以“ow”結(jié)束的元素
Ext.query("*{color$=ow}"); // [a www.extjs.com]
// 獲取所有顏色屬性包含“ow”字符的元素
Ext.query("*{color*=ow}"); // [a www.extjs.com, span.bar]
(5)偽操作符取法換個(gè)html:
復(fù)制代碼 代碼如下:

<html>
<head>
</head>
<body>
<div id="bar" class="foo" style="color:red; border: 2px dotted red; margin:5px; padding:5px;">
我是一個(gè)div ==> 我的id是bar,我的class是foo
<span class="bar" style="color:pink;">這里是span元素,外層的div元素有foo的class屬性</span>
<a target="_blank" style="color:yellow;">設(shè)置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;">這里是一個(gè)span元素,外層是div包圍著,span還有一個(gè)bar的class屬性。</span>
<a href="#" style="color:green;">內(nèi)置鏈接</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">已點(diǎn)擊</label>
<br /><br />
<input id="notChked" type="checkbox" /><label for="notChked">not me brotha!</label>
</form>
</div>
</body>
</html>

//SPAN元素為其父元素的第一個(gè)子元素
Ext.query("span:first-child"); // [span.bar]
//A元素為其父元素的最后一個(gè)子元素
Ext.query("a:last-child") // [a www.extjs.com, a test.html#]
//SPAN元素為其父元素的第2個(gè)子元素(由1開(kāi)始的個(gè)數(shù))
Ext.query("span:nth-child(2)") // [span.bar]
//TR元素為其父元素的奇數(shù)個(gè)數(shù)的子元素
Ext.query("tr:nth-child(odd)") // [tr, tr]
//LI元素為其父元素的奇數(shù)個(gè)數(shù)的子元素
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]
//返回第一個(gè)的TR元素
Ext.query("tr:first") // [tr]
//返回最后一個(gè)的INPUT元素
Ext.query("input:last") // [input#notChked on]
//返回第二個(gè)的TD元素
Ext.query("td:nth(2)") // [td]
//返回每一個(gè)包含“within”字符串的DIV
Ext.query("div:contains(within)") // [div#bar.foo, div#foo.bar]
//返回沒(méi)有包含F(xiàn)ORM子元素以外的那些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]
//返回接著會(huì)繼續(xù)有TD的那些TD集合。尤其一個(gè)地方是,如果使用了colspan屬性的TD便會(huì)忽略
Ext.query("td:next(td)") // [td, td]
//返回居前于INPUT元素的那些LABEL元素集合
Ext.query("label:prev(input)") //[label, label]

相關(guān)文章

最新評(píng)論