DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jQuery中filter(),not(),split()使用方法
jQuery中filter(),not(),split()使用方法
編輯:JQuery特效代碼     
filter()和not():
代碼如下:
<script type="text/javascript">
$(document).ready(function() {
//輸出 hello
alert($("p").filter(".selected").html());
//輸出 How are you?
alert($("p").not(".selected").html());
});
</script>
</head>
<body>
<p class="selected">Hello</p><p>How are you?</p>
<!--
一個新的挑戰是從一組類似或相同的元素中只選擇某一個特定的元素。
jQuery提供了filter()和not()來做這個。
filter()能夠將元素精簡到只剩下滿足過濾條件的那些,not()恰恰相反,他移除了所有滿足條件的。-->
</body>

split():
代碼如下:
<script type="text/javascript">
$(document).ready(function(){
$("input[@value=btn1]").click(function(){
//以¥分割
alert($("span.sale").text().split("¥")[2]+"||"+$("span.sale").text().split("¥")[1]+"||"+$("span.sale").text().split("¥")[0]);
});
});
</script>
</head>
<body>
獲取價格120:<input type="button" value="btn1" ><br>
<span class="sale">
Out Sale: ¥160<br />
Deal Price: ¥120</span>
<!--
應用split來解決這個問題。下面給出一個用split的實例:
msg ="2007/10/01";
msg = msg.split("/");
alert(msg[2]);
他會把 msg 分成一個3塊組成一個數組 ,然後就可以輕松獲取了。
-->
</body>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved