Summary: DomQuery基础 |
Author: Bernard Chhun (译者:Frank Cheung) |
Published: 2007-8-5 |
Ext Version: 1.1+ / 2.0+ |
Languages: English Chinese Korean |
本教程旨在为读者了解怎样利用单例对象Ext.DomQuery,浏览穿梭于DOM树之中和获取对象,提供一个起点。
Contents[hide] |
DomQuery的select函数有两个参数。第一个是选择符字符(selector string )而第二个是欲生成查询的标签ID(TAG ID)。本文中我准备使用函数“Ext.query”但读者须谨记它是“Ext.DomQuery.select()”的简写方式。
这是要入手的html:
<html> <head> <script type="text/javascript" src="../js/firebug/firebug.js"></script> </head> <body> <script type="text/javascript" src="../ext/ext-base.js"></script> <script type="text/javascript" src="../ext/ext-core.js"></script> <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> </body> </hmlt>
假设我想获取文档内所有的“span”标签:
// 这个查询会返回有两个元素的数组因为查询选中对整个文档的所有span标签。 Ext.query("span"); // 这个查询会返回有一个元素的数组因为查询顾及到了foo这个id。 Ext.query("span", "foo");
注意刚才怎么传入一个普通的字符串作为第一个参数。
按id获取标签,你需要加上“#”的前缀:
// 这个查询会返回包含我们foo div一个元素的数组! Ext.query("#foo");
按class name获取标签,你需要加上“.”的前缀:
/*这个查询会返回有一个元素的数组, 包含与之前例子一样的div但是我们使用了class name来获取*/ Ext.query(".foo");
你也可以使用关键字“*”来获取所有的元素:
// 这会返回一个数组,包含文档的所有元素。 Ext.query("*");
要获取子标签,我们只须在两个选择符之间插入一个空格:
// 这会返回有一个元素的数组,内容为div标签下的p标签 Ext.query("div p"); // 这会返回有两个元素的数组,内容为div标签下的span标签 Ext.query("div span");
还有三个的元素选择符,待后续的教程会叙述。 ""
如果朋友你觉得这里说得太简单的话,你可以选择到DomQuery 文档看看,可能会有不少收获:)
这些选择符可让你得到基于一些属性值的元素。属性指的是html元素中的href, id 或 class。
这些选择符会匹配DOM元素的style属性。尝试在那份html中加上一些颜色:
<
html
>
<
head
>
<
script
type
="text/javascript"
src
="../js/firebug/firebug.js"
></
script
>
</
head
>
<
body
>
<
script
type
="text/javascript"
src
="../ext/ext-base.js"
></
script
>
<
script
type
="text/javascript"
src
="../ext/ext-core.js"
></
script
>
<
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"
temp_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
="#"
temp_href
="#"
style
="color:green;"
>
An internal link
</
a
>
</
div
>
</
body
>
</
html
>
基于这个CSS的颜色值我们不会作任何查询,但可以是其它的内容。它的格式规定是这样的:
元素{属性 操作符 值}
注意我在这里是怎么插入一个不同的括号。
所以,操作符(operators)和属性选择符(attribute selectors)是一样的。
仍然是刚才的网页,但是有所不同的只是新加上了一个UL元素、一个TABLE元素和一个FORM元素,以便我们可以使用不同的伪类选择符,来获取节点。
off we go:
/* this one gives us the first SPAN child of its parent */ Ext.query("span:first-child"); // [span.bar] /* this one gives us the last A child of its parent */ Ext.query("a:last-child") // [a www.extjs.com, a test.html#] /* this one gives us the second SPAN child of its parent */ Ext.query("span:nth-child(2)") // [span.bar] /* this one gives us ODD TR of its parents */ Ext.query("tr:nth-child(odd)") // [tr, tr] /* this one gives us even LI of its parents */ Ext.query("li:nth-child(even)") // [li, li] /* this one gives us A that are the only child of its parents */ Ext.query("a:only-child") // [a test.html#] /* this one gives us the checked INPUT */ Ext.query("input:checked") // [input#chked on] /* this one gives us the first TR */ Ext.query("tr:first") // [tr] /* this one gives us the last INPUT */ Ext.query("input:last") // [input#notChked on] /* this one gives us the 2nd TD */ Ext.query("td:nth(2)") // [td] /* this one gives us every DIV that has the "within" string */ Ext.query("div:contains(within)") // [div#bar.foo, div#foo.bar] /* this one gives us every DIV that doesn't have a FORM child */ Ext.query("div:not(form)") [div#bar.foo, div#foo.bar, div] /* This one gives use every DIV that has an A child */ Ext.query("div:has(a)") // [div#bar.foo, div#foo.bar, div] /* this one gives us every TD that is followed by another TD. obviously, the one that has a colspan property is ignored. */ Ext.query("td:next(td)") // [td, td] /* this one gives us every LABEL that is preceded by an INPUT */ Ext.query("label:prev(input)") //[label, label]
API依然最重要的资讯来源。本篇教程做的仅仅是拿一张现实中的网页示范了一些结果。
如读者已了解过API的DomQuery内容,可跳过本文,直接阅读 DomQuery advanced tutorial!