jQuery中filter(),not(),split()使用方法_Javascript教程-查字典教程网
jQuery中filter(),not(),split()使用方法
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>

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新Javascript教程学习
    热门Javascript教程学习
    编程开发子分类