回答編集履歴
2
文修正
test
CHANGED
@@ -1,4 +1,6 @@
|
|
1
|
-
その場合は
|
1
|
+
その場合は```.index()```で取得できます。
|
2
|
+
|
3
|
+
コードも以下のようにもっと単純にできます。
|
2
4
|
|
3
5
|
```jQuery
|
4
6
|
|
1
修正
test
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
$('.clm_close').click(function() {
|
6
6
|
|
7
|
-
let th = $(this).
|
7
|
+
let th = $(this).closest('th'),
|
8
8
|
|
9
9
|
index = $('thead tr th').index(th);
|
10
10
|
|