jquery中filter(),not(),split()三个函数的使用方法

  作者:会飞的

jquery中filter(),not(),split()三个函数的使用方法:jquery中的一些查找过滤功能filter(),not(),split()函数用法,可以让jquery更容易的操作控制页面中的元素。下面分别介绍一个这三个函数的用法filter()和not():<script type="text/javascript">$(document).ready(function() {//输出 helloalert($("p&

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 ="2010/07/07"; 

msg = msg.split("/"); 

alert(msg[2]); 

他会把 msg 分成一个3块组成一个数组 ,然后就可以轻松获取了。 

</body>


有用  |  无用

猜你喜欢