-2

私は JavaScript の初心者です。キーワードの主な目的とそのthis使用方法を理解するのに問題があります。

誰でも例を教えてください。

前もって感謝します。

4

1 に答える 1

0

thisキーワードは、通常、オブジェクトにバインドされる予約済みキーワードです。

When this appears in the body of a function, the object that is referenced by this usually depends on how the function was called.

There are many subtle details that can be found on MDN.this

Frequent accepted usage that you will encounter (beware, this is not always the case depending on ... the context) :

  • when dealing with object methods, this references the current instance
  • when dealing with DOM events, this references the DOM element in the context of the event
于 2013-04-04T22:32:40.777 に答える