回答編集履歴

1

children -> next

2020/07/15 08:15

投稿

Cojiro
Cojiro

スコア539

test CHANGED
@@ -1,6 +1,10 @@
1
1
  下記のような感じで実現できるのではないでしょうか。
2
2
 
3
- ポイントはthisの使い方とchildrenです。
3
+ ポイントはthisの使い方と ~~childrenです。~~ nextです。
4
+
5
+ よく見たら子要素ではなく、隣の要素ですね。
6
+
7
+
4
8
 
5
9
 
6
10
 
@@ -12,7 +16,7 @@
12
16
 
13
17
  $('.a-comment').click(function() {
14
18
 
15
- $(this).children(".remove-comment").toggle();
19
+ $(this).next(".remove-comment").toggle();
16
20
 
17
21
  });
18
22