jQuery中filter(),not(),split()使用方法
发布时间:2016-12-30 来源:查字典编辑
摘要:filter()和not():复制代码代码如下:$(document).ready(function(){//输出helloalert($(...
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>Hello</p><p>How are you?</p>
<>
</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>
Out Sale: ¥160<br />
Deal Price: ¥120</span>
<>
</body>