回答編集履歴
2
hideの実行が無かったので、追加
test
CHANGED
@@ -28,7 +28,7 @@
|
|
28
28
|
|
29
29
|
|
30
30
|
|
31
|
-
$('.buttonRead').hide.click(function(){
|
31
|
+
$('.buttonRead').hide().click(function(){
|
32
32
|
|
33
33
|
const buttonId = this.dataset.buttonid;
|
34
34
|
|
1
余計なスペースを削除
test
CHANGED
@@ -14,7 +14,7 @@
|
|
14
14
|
|
15
15
|
|
16
16
|
|
17
|
-
<li class="readmore
|
17
|
+
<li class="readmore buttonRead" data-buttonid="2">
|
18
18
|
|
19
19
|
<a href="#"><span></span></a>
|
20
20
|
|
@@ -28,7 +28,7 @@
|
|
28
28
|
|
29
29
|
|
30
30
|
|
31
|
-
$('.
|
31
|
+
$('.buttonRead').hide.click(function(){
|
32
32
|
|
33
33
|
const buttonId = this.dataset.buttonid;
|
34
34
|
|