回答編集履歴

2

文修正

2020/11/24 13:53

投稿

cerfweb
cerfweb

スコア1907

test CHANGED
@@ -1,4 +1,6 @@
1
- その場合は単にクリックされた列のindex取得すればいいのもっと単純にできます。
1
+ その場合は```.index()```で取得できます。
2
+
3
+ コードも以下のようにもっと単純にできます。
2
4
 
3
5
  ```jQuery
4
6
 

1

修正

2020/11/24 13:53

投稿

cerfweb
cerfweb

スコア1907

test CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  $('.clm_close').click(function() {
6
6
 
7
- let th = $(this).parents('th'),
7
+ let th = $(this).closest('th'),
8
8
 
9
9
  index = $('thead tr th').index(th);
10
10