このような:
_$(this).parents('.abc');
_
または
_$(this).parent('.abc');
_
または
_$(this).closest('.abc');
_
.parent()
と .parents()
は似ていますが、.parent()
はDOMツリーの1レベルだけ上に移動します。
<script>$(this).parent(".abc")</script>
このような:
_$(this).parents('.abc');
_
または
_$(this).parent('.abc');
_
または
_$(this).closest('.abc');
_
.parent()
と .parents()
は似ていますが、.parent()
はDOMツリーの1レベルだけ上に移動します。
<script>$(this).parent(".abc")</script>