DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> JQuery Tips(3) 關於$()包裝集內元素的改變
JQuery Tips(3) 關於$()包裝集內元素的改變
編輯:JQuery特效代碼     
這兩個方法是比較容易搞混的.
filter方法表示的是對當前內部的元素進行篩選,這個接受兩種參數,一個返回bool的function,或者是JQuery的選擇表達式,包裝集內的元素只會小於等於當前包裝集內的元素,並且含有的元素屬於原來包裝集內元素的子集:
代碼如下:
<div id="one">the one</div>
<div id="two"><p>the two</p></div>
<div id="three"><p>the three</p></div>
<script type="text/javascript">
alert($("div").filter(":not(:first):not(:last)").html()); //out put<p>the two</p>
alert($("div").filter(function() { return this.id == "two"; }).html());//output <p>the two</p> as well
</script>

而find方法卻是在當前元素內(子元素)部進行查找,並返回新的包裝集,這意味著包裝集可能會增加:
代碼如下:
<div id="one">the one</div>
<div id="two"><p>the two</p><p></p><p></p></div>
<div id="three"><p>the three</p></div>
<script type="text/javascript">
alert($("div").find("p").text()); //alert "the twothe three"
alert($("div").find("p").length); //alert 4 instead of original 3
</script>

從上面可以看出新包裝集內的元素增加了

parents()方法 VS closest()方法
這兩個方法都是由當前元素向上查找所匹配的元素,不同之處如下:
代碼如下:
<div id="wrapper">
<div id="two">
<p id="p1">
the two</p>
</div>
</div>
<script type="text/javascript">
alert($("#p1").parents("div").length); //alert 2 include <div id="two"> and <div id="wrapper">
alert($("#p1").closest("div").length); //alert 1 and only include <div id="two">
alert($("#p1").parents("p").length); //alert 0 because it does not include current element
alert($("#p1").closest("p").length); //alert 1 because it contain itself <p id="p1">
</script>

對於parents方法來說,會將當前元素向上的所有匹配元素加入新的包裝集並返回,而closest方法只會包含離當前元素最近的元素,所以使用closest方法後當前包裝集內的元素只能為1個或者0個
而parents方法並不包括當前包裝集內的元素,而closest方法會包含當前包裝集內的元素
直系子元素 VS 所有子元素
使用children可以返回直系子元素,而用find加通配符的方法可以返回除了文本節點之外的所有子元素:
代碼如下:
<div id="wrapper">
text node here
<div id="two">
<p id="p1">
the two</p>
</div>
</div>
<script type="text/javascript">
alert($("#wrapper").children().length);//alert 1 because only direct children included
alert($("#wrapper").find("*").length); //alert 2 because all desendants included
alert($("#wrapper").find(">*").length);//alert 1 because only direct children included
</script>

可以看出children方法只會含有當前元素的直系子元素,而使用find(“>*也會產生同樣的效果”).若想采納所有的直系子元素直接在find內傳”*”通配符
回到過去的end()方法以及andself()方法
上述所有的方法,以及比如add(),next(),nextAll(),prev()等對包裝集內元素進行改變的方法都可以使用end()方法來進行返回:
代碼如下:
<div id="wrapper">
text node here
<div id="two">
<p id="p1">
the two</p>
</div>
</div>
<script type="text/javascript">
alert($("#wrapper").find(">*").end().get(0).id);//alert "wrapper" instead of "two" because of end() method has been used
</script>

end()方法總是和最近的一個和包裝集改變的方法相抵消,而抵消其他方法:
代碼如下:
<div id="wrapper">
text node here
<div id="two">
<p id="p1">
the two</p>
</div>
</div>
<script type="text/javascript">
alert($("#wrapper").find("#p1").html("new value").end().get(0).id);//alert wrapper because end method
alert($("#p1").text())//alert new value bacause the html method in previous has not been cancelled
</script>

如果需要在改變包裝集內元素的情況下還需要包含原始的包裝集內元素,使用andself方法:
代碼如下:
<div id="wrapper">
text node here
<div id="two">
<p id="p1">
the two</p>
</div>
</div>
<script type="text/javascript">
var $a = $("#wrapper").find("#two").andSelf();
alert($a[0].id);//alert two first
alert($a[1].id);//alert wrapper after that
</script>

我們會發現首先alert two,因為two先被選擇

PS:liver writer代碼高亮插件我一加中文就是亂碼,很郁悶的說-.-!!所以注釋都是鳥語了
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved