回答編集履歴
1
追記
test
CHANGED
@@ -1,3 +1,29 @@
|
|
1
1
|
こちらが参考になるかと。
|
2
2
|
|
3
3
|
[JavaScriptでidを取得する方法](https://uxmilk.jp/11596)
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
```Javascript
|
8
|
+
|
9
|
+
function a(element) {
|
10
|
+
|
11
|
+
alert(element.getAttribute("id"));
|
12
|
+
|
13
|
+
}
|
14
|
+
|
15
|
+
```
|
16
|
+
|
17
|
+
```HTML
|
18
|
+
|
19
|
+
<input id="a1" type="button" value="1" onclick="a(this);">
|
20
|
+
|
21
|
+
<input id="a2" type="button" value="2" onclick="a(this);">
|
22
|
+
|
23
|
+
<input id="a3" type="button" value="3" onclick="a(this);">
|
24
|
+
|
25
|
+
<input id="a4" type="button" value="4" onclick="a(this);">
|
26
|
+
|
27
|
+
<input id="a5" type="button" value="5" onclick="a(this);">
|
28
|
+
|
29
|
+
```
|