码迷,mamicode.com
首页 > Web开发 > 详细

[ jquery 过滤器nextAll(expr) ] 此方法用于在选择器的基础之上搜索被选元素的后面的所有同级元素,此方法参数只能传递表达式,无法传递其他类型

时间:2016-06-25 22:51:23      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:

此方法用于在选择器的基础之上搜索被选元素的后面的所有同级元素,此方法参数只能传递表达式,无法传递其他类型

可以使用此方法向里面传递表达式的方法实现和jqueryObj.next()相同的效果

实例:

<html lang=‘zh-cn‘>
<head>
<title>Insert you title</title>
<meta http-equiv=‘description‘ content=‘this is my page‘>
<meta http-equiv=‘keywords‘ content=‘keyword1,keyword2,keyword3‘>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type=‘text/javascript‘ src=‘./js/jquery-1.12.1.min.js‘></script>
<style type="text/css">
    *{margin:0;padding:0;}
    html{font:400 15px/1.2em ‘Courier New‘;color:#666;width:750px;margin:25px auto;}
    div > p{white-space: pre-wrap;margin:15px 0;}
    div >*{text-indent:8px;}
    .hover{color:#FF96EC;}
</style>
<script type=‘text/javascript‘>
    $(function(){
       $(‘div‘).nextAll(‘.selectorDemoSecond‘).addClass(‘hover‘);
    });
</script>
</head>
<body>
    <div id=‘demo‘>
        <p>This is a p tag text presentation.</p>
        <p>This is a p tag text presentation.</p>
        <p>This is a p tag text presentation.</p>
        <div class=‘selectorDemoFirst‘ style=‘border:1px solid #925CE9;‘>
            <p>This is a p tag text presentation.</p>
            <p>This is a p tag text presentation.</p>
        </div>
        <p>This is a p tag text presentation.</p>
        <div class=‘selectorDemoSecond‘ style=‘border:1px solid #999;margin-bottom: 45px;‘>
            <span>This is a span tag text presentation</span>
            <p>This is a p tag text presentation.</p>
        </div>
        <div class=‘selectorDemoSecond‘ style=‘border:1px solid #925CE9;‘>
            <span>This is a span tag text presentation</span>
            <p>This is a p tag text presentation.</p>
            <span style=‘padding:8px;‘>This is a span tag text presentation</span>
        </div>
        <p>This is a p tag text presentation.</p>
    </div>
</body>
</html>

 

[ jquery 过滤器nextAll(expr) ] 此方法用于在选择器的基础之上搜索被选元素的后面的所有同级元素,此方法参数只能传递表达式,无法传递其他类型

标签:

原文地址:http://www.cnblogs.com/mysearchblog/p/5616999.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!