「jQuery入門」find()とchildren()のサンプルコード

2019年2月20日

サンプルコード

$(function() {
  $('#testFind').click(function() {
    // find()で「#cft」内にすべての「a」要素を取得する
    $('#cft').find('a').css('color','green');


  });

  $('#testChild').click(function() {
    // children()で「#cft」の一階層下にある「a」要素を取得する
    $('#cft').children('a').fadeOut();
  });
});

jQuery

Posted by arkgame