LoginSignup
4
5

More than 5 years have passed since last update.

thisの意味するところ

Posted at

hoverやclickのようなイベントに使われるthis...

jQueryだと

$(".hoge").hover(function(){
    $(this).css("color","red")
});

と書いたりします。

この$(this)、1つ上に記述している$(".hoge")を単純に指しているかと思っていましたが、「イベントが起きている$(".hoge")」のことだそうです。

また、

$(".hoge").hover(function(){
    $(".piyo",this).css("color","red")
});

だと、$(".piyo",this)
「イベントが起きている$(".hoge")の下層にある$(".piyo")」とのこと。

4
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
5