1

次のようなマークアップがあります。

<div class="container">
    <div>one</div>
    <div>two</div>
    <div>three</div>
    <div>four</div>
    <div>five</div>
</div>

index()jQueryを使用してコンテナー内の任意の背景色を指定したいdiv(サーバーから動的にインデックスを取得します)。

4

3 に答える 3

3

子供を利用し、eq()

 $(".container").children().eq(0).css("background-color",'red') //this will change background of first div

あなたの条件で

 var yourindex='0';
 $(".container").children().eq(yourindex).css("background-color",'red')

ここでフィドル

于 2013-02-20T07:06:21.900 に答える
0
$(".container div:nth-child(0)").css("someecssName)
于 2013-02-20T07:06:29.977 に答える