回答編集履歴
1
情報の追加。
answer
CHANGED
@@ -4,4 +4,23 @@
|
|
4
4
|
$("div[data-uihid]").each(function(e){
|
5
5
|
uiHistory( this );
|
6
6
|
});
|
7
|
-
```
|
7
|
+
```
|
8
|
+
|
9
|
+
|
10
|
+
【jQuery入門講座 使い方-thisについて(2)】
|
11
|
+
[http://www.jquerystudy.info/tutorial/basic/this2.html](http://www.jquerystudy.info/tutorial/basic/this2.html)
|
12
|
+
|
13
|
+
【【jQuery】間違えやすい「$(this)」と「this」の使い方とは? - ONZE】
|
14
|
+
[http://on-ze.com/archives/1816](http://on-ze.com/archives/1816)
|
15
|
+
|
16
|
+
---
|
17
|
+
|
18
|
+
```JavaScript
|
19
|
+
// 単純にこうでも良いです。
|
20
|
+
uiHistory( $("div[data-uihid]").get(0) );
|
21
|
+
```
|
22
|
+
|
23
|
+
【.get() | jQuery 1.9 日本語リファレンス | js STUDIO】
|
24
|
+
[http://js.studio-kingdom.com/jquery/core/get](http://js.studio-kingdom.com/jquery/core/get)
|
25
|
+
|
26
|
+
|