>
1
$(".one div").css("background","red") // .one 以降のすべての DIV 子孫要素 (子孫: 息子と孫を含む)
$(".one > div").css("background","red") // .one の後の子要素。 (息子: 息子と娘....)
$(".one div").css("background","red") // .one の後の隣接要素。 .one の直後の兄弟要素です。
$(".one").next().css("background","red") // この関数は上記と同じです
$(".one ~ div") .css("background" ,"red") //.one の後の兄弟要素。前を除く
$(".one").nextAll().css("background","red") //関数は上記と同じ
$(".one").siblings( ).css( "background","red") // 後ろか前かに関係なく、.one のすべての兄弟要素。