回答編集履歴
2
文言
test
CHANGED
@@ -11,3 +11,7 @@
|
|
11
11
|
[map()](https://api.jquery.com/map/#map-callback)
|
12
12
|
|
13
13
|
> Within the callback function, `this` refers to the current DOM element for each iteration.
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
jQueryに関数を読んでもらっている限り、`this`の内容がjQueryが決めているもの以外になることはありません。(アロー関数や `bind()`した場合を除く)
|
1
文言
test
CHANGED
@@ -1,13 +1,13 @@
|
|
1
|
-
jQuryのドキュメントに書いてあります。
|
1
|
+
jQueryのドキュメントに書いてあります。
|
2
2
|
|
3
3
|
|
4
4
|
|
5
5
|
[on()](https://api.jquery.com/on/)
|
6
6
|
|
7
|
-
> When jQuery calls a handler, the this keyword is a reference to the element where the event is being delivered;
|
7
|
+
> When jQuery calls a handler, the `this` keyword is a reference to the element where the event is being delivered;
|
8
8
|
|
9
9
|
|
10
10
|
|
11
11
|
[map()](https://api.jquery.com/map/#map-callback)
|
12
12
|
|
13
|
-
> Within the callback function, this refers to the current DOM element for each iteration.
|
13
|
+
> Within the callback function, `this` refers to the current DOM element for each iteration.
|