質問編集履歴

3

内容をタグ通りに直しました。

2020/03/21 02:23

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
 
6
6
 
7
- イトルを押すと本文が開閉するようにしたのですが、
7
+ 続きを見るボを押すと本文が開閉するようにしたのですが、
8
8
 
9
9
  本文がない時もあるので
10
10
 

2

マークダウンを編集しました

2020/03/21 02:23

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -12,7 +12,9 @@
12
12
 
13
13
 
14
14
 
15
+ ```html
16
+
15
- `<div class="display-button">続きを見る</div>
17
+ <div class="display-button">続きを見る</div>
16
18
 
17
19
  <div class="comment-display">
18
20
 
@@ -48,7 +50,9 @@
48
50
 
49
51
  </div>
50
52
 
51
- </div>`
53
+ </div>
54
+
55
+ ```
52
56
 
53
57
 
54
58
 
@@ -60,7 +64,9 @@
60
64
 
61
65
 
62
66
 
67
+ ```jquery
68
+
63
- `<script>
69
+ <script>
64
70
 
65
71
  $(function(){
66
72
 
@@ -72,7 +78,9 @@
72
78
 
73
79
  });
74
80
 
75
- </script>`
81
+ </script>
82
+
83
+ ```
76
84
 
77
85
 
78
86
 

1

マークダウンを使って修正しました。

2020/03/20 07:40

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -12,61 +12,57 @@
12
12
 
13
13
 
14
14
 
15
- <div class="display-button">続きを見る</div>
15
+ `<div class="display-button">続きを見る</div>
16
16
 
17
- <div class="comment-display">
17
+ <div class="comment-display">
18
18
 
19
- <div id="detail">
19
+ <div id="detail">
20
20
 
21
- <?php
21
+ <?php
22
22
 
23
- for($j=0;$j<=$maxCommentCount;$j++){
23
+ for($j=0;$j<=$maxCommentCount;$j++){
24
24
 
25
- if(!empty($data['comment'][$j]) || !empty($data['upfile_path'][$j])){
25
+ if(!empty($data['comment'][$j]) || !empty($data['upfile_path'][$j])){
26
26
 
27
27
  $upfileTag = '';
28
28
 
29
- if(!empty($data['upfile_path'][$j])){
29
+ if(!empty($data['upfile_path'][$j])){
30
30
 
31
- $upfileTag = '<a data-fancybox href="'.$data['upfile_path'][$j].'"><img src="'.$data['upfile_path'][$j].'?'.uniqid().'" /></a>';
31
+ $upfileTag = '<a data-fancybox href="'.$data['upfile_path'][$j].'"><img src="'.$data['upfile_path'][$j].'?'.uniqid().'" /></a>';
32
32
 
33
- $upfileTag = $upfileTag;
33
+ $upfileTag = $upfileTag;
34
+
35
+ }?>
36
+
37
+ <div class="comment"><?php echo (!empty($data['comment'][$j])) ? $data['comment'][$j] : '';?></div>
38
+
39
+ <div class="detailUpfile"><?php echo $upfileTag;?></div>
40
+
41
+ <?php
34
42
 
35
43
  }
36
44
 
37
- ?>
38
-
39
-
40
-
41
- <div class="comment"><?php echo (!empty($data['comment'][$j])) ? $data['comment'][$j] : '';?></div>
42
-
43
- <div class="detailUpfile"><?php echo $upfileTag;?></div>
44
-
45
- <?php
46
-
47
- }
48
-
49
45
  }
50
46
 
51
- ?>
47
+ ?>
52
48
 
53
- </div>
49
+ </div>
54
50
 
55
- </div>
51
+ </div>`
56
52
 
57
53
 
58
54
 
59
55
 
60
56
 
61
- cssではcomment-displayをdisplay:noneで消していて、
57
+ cssではcomment-displayを`display:none`で消していて、
62
58
 
63
59
  jqueryは下記のようにしています。
64
60
 
65
61
 
66
62
 
67
- <script>
63
+ `<script>
68
64
 
69
- $(function(){
65
+ $(function(){
70
66
 
71
67
  $(".display-button").on("click", function() {
72
68
 
@@ -76,7 +72,7 @@
76
72
 
77
73
  });
78
74
 
79
- </script>
75
+ </script>`
80
76
 
81
77
 
82
78