Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のようなマークアップがあります。
<div class="container"> <div>one</div> <div>two</div> <div>three</div> <div>four</div> <div>five</div> </div>
index()jQueryを使用してコンテナー内の任意の背景色を指定したいdiv(サーバーから動的にインデックスを取得します)。
index()
div
子供を利用し、eq()
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')
ここでフィドル
$(".container div:nth-child(0)").css("someecssName)