jquery通过索引获取元素

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
<meta charset="utf-8" />
    <script src="jquery-3.3.1.js"></script>
    <script>
        $(function () {
            $('#btn').click(function () {


                //索引获取元素
                //$('div:eq(3)').css('backgroundColor', 'red');


                //索引小于3元素
                //$('div:lt(3)').css('backgroundColor', 'red');


                //索引大于3元素
                //$('div:gt(3)').css('backgroundColor', 'red');


                //索引大于3以后的索引小于2的元素
                //$('div:gt(3):lt(2)').css('backgroundColor', 'red');


                //第一个div
                //$('div:first').css('backgroundColor', 'red');


                //最后一个div
                //$('div:last').css('backgroundColor', 'red');

            });
        });
    </script>
    <style>
        div{
            width:300px;
            height:20px;
            background-color:yellow;
            margin-bottom:10px;
        }
    </style>
</head>
<body>
    <input type="button" name="name" value="显示效果" id="btn" />
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>


</body>
</html>
posted @ 2018-03-25 19:39  dxm809  阅读(767)  评论(0编辑  收藏  举报