「Jquery」children()で子要素を取得するサンプル
サンプルコード
<ul id="cft"> <li>AAA</li> <li>BBB</li> <li>CCC</li> </ul> /* children() */ var tt = $('#cft').children(); tt.click(function(){ //some code }) /* cssの子孫セレクタ */ $('#cft > li').click(function(){ //some code })
Coding Changes the World
サンプルコード
<ul id="cft"> <li>AAA</li> <li>BBB</li> <li>CCC</li> </ul> /* children() */ var tt = $('#cft').children(); tt.click(function(){ //some code }) /* cssの子孫セレクタ */ $('#cft > li').click(function(){ //some code })