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

jQuery学习- 子选择器与可见性选择器

时间:2016-11-15 17:26:56      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:color   选择   .com   可见   script   last   set   har   技术   

技术分享

 

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>子选择器与可见性选择器</title>
            <script src="js/jquery.js"></script>
        <script type="text/javascript">
        $(function(){
        //出现在其父元素第一个位置的li
        $("li:first-child").css("border","2px solid red") 
        
        //出现在其父元素最后一个位置的li
         $("li:last-child").css("border","2px solid orange") 
         
         //出现在其父元素第三个位置的li 从1开始 以前学过的:eq(n)是从0开始,
         $("li:nth-child(3)").css("border","2px solid blue") 
         
         //获取所有可显示的元素
         $(":visible").css("border","2px solid blue") 
         
        })
        //
        </script>
    </head>
    <body>
        <div>
            <ul>
                <li>1</li>
                <li>2</li>
                <li>3</li>
                <li>4</li>
                <li>5</li>
                <li>6</li>
                <ul>
                    
                    <li>7</li>
                    <li>8</li>
                </ul>
            </ul>
        </div>
    </body>
</html>

 

jQuery学习- 子选择器与可见性选择器

标签:color   选择   .com   可见   script   last   set   har   技术   

原文地址:http://www.cnblogs.com/whzym111/p/6066169.html

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