現在処理の対象となっている要素(親要素)を表す。
$(this)が使える場所では、$(this)を使った方がjQueryの処理が早くなる。
$("a#open-list").click(function(){
$(this).toggleClass("on"); //この場合、「a#open-list」と同じ
});
現在処理の対象となっている要素(親要素)を表す。
$(this)が使える場所では、$(this)を使った方がjQueryの処理が早くなる。
$("a#open-list").click(function(){
$(this).toggleClass("on"); //この場合、「a#open-list」と同じ
});