$(this)のfirst-childの指定方法は普通と少し違います。
jQueryでのfirst-childの指定方法は
1 |
$(div:first-child).text(...); |
ですが、$(this)のfirst-childの指定方法は
1 |
$(this).find(':first-child').text(...); |
が正解です。
$(this)のfirst-childの指定方法は普通と少し違います。
jQueryでのfirst-childの指定方法は
1 |
$(div:first-child).text(...); |
ですが、$(this)のfirst-childの指定方法は
1 |
$(this).find(':first-child').text(...); |
が正解です。