質問編集履歴

8

HTMLの追加

2019/06/08 01:56

投稿

kinisinai
kinisinai

スコア28

test CHANGED
File without changes
test CHANGED
@@ -91,3 +91,71 @@
91
91
  });
92
92
 
93
93
  ```
94
+
95
+
96
+
97
+ ```HTML
98
+
99
+ <form method="post" name="formreq" action="edit">
100
+
101
+
102
+
103
+ <table id="foo-table">
104
+
105
+ <thead>
106
+
107
+
108
+
109
+
110
+
111
+ <tr>
112
+
113
+ <th>ID</th>
114
+
115
+ <th>会社名</th>
116
+
117
+ <th>社員名</th>
118
+
119
+ <th>社員かな名</th>
120
+
121
+ <th>性別</th>
122
+
123
+ <th></th>
124
+
125
+ </tr>
126
+
127
+ </thead>
128
+
129
+ <tbody id="addgyou">
130
+
131
+
132
+
133
+
134
+
135
+ <tr>
136
+
137
+ <td>1</td>
138
+
139
+ <td class="hensyu">テスト会社</td>
140
+
141
+ <td class="hensyu">てすと太郎</td>
142
+
143
+ <td class="hensyu">テストタロウ</td>
144
+
145
+ <td class="hensyu">男</td>
146
+
147
+ <td><button type="submit" id="tdatai" title="編集">編集</button></td>
148
+
149
+ </tr>
150
+
151
+
152
+
153
+ </tbody>
154
+
155
+ </table>
156
+
157
+
158
+
159
+ </form>
160
+
161
+ ```

7

間違っていた箇所修正

2019/06/08 01:55

投稿

kinisinai
kinisinai

スコア28

test CHANGED
File without changes
test CHANGED
@@ -89,3 +89,5 @@
89
89
  });
90
90
 
91
91
  });
92
+
93
+ ```

6

不足、間違っていた点の修正

2019/06/07 14:47

投稿

kinisinai
kinisinai

スコア28

test CHANGED
File without changes
test CHANGED
@@ -88,78 +88,4 @@
88
88
 
89
89
  });
90
90
 
91
- });
91
+ });
92
-
93
-
94
-
95
- ```HTML
96
-
97
- <tbody id="addgyou">
98
-
99
-
100
-
101
- @for($i = 0; $i < count($user_info); $i++)
102
-
103
-
104
-
105
- <tr>
106
-
107
- <td>{{$user_info[$i]->login_id}}</td>
108
-
109
- <td class="hensyu">{{$user_info[$i]->office_name}}</td>
110
-
111
- <td class="hensyu">{{$user_info[$i]->user_name}}</td>
112
-
113
- <td class="hensyu">{{$user_info[$i]->kana}}</td>
114
-
115
- @if($user_info[$i]->member_kbn == 0)
116
-
117
- <td class="kbn">フリー会員</td> @elseif($user_info[$i]->member_kbn ==
118
-
119
- 1)
120
-
121
- <td class="kbn">プレミアム会員(個人)</td>
122
-
123
- @elseif($user_info[$i]->member_kbn == 2)
124
-
125
- <td class="kbn">プレミアム会員(法人)</td> @endif
126
-
127
- @if($user_info[$i]->serial_number != NULL)
128
-
129
- <td>ログイン</td> @else
130
-
131
- <td>ログオフ</td> @endif
132
-
133
- <td style="width: 100px" class="text-center"><div
134
-
135
- style="display: inline-flex">
136
-
137
- <button type="submit" id="tdatai" class="btn btn-success" title="編集"
138
-
139
- formaction="/edit_user">
140
-
141
- <i class="fas fa-pencil-alt"></i>
142
-
143
- </button>
144
-
145
- &nbsp;&nbsp;
146
-
147
- <button class="btn btn-danger btn-dell" title="削除"
148
-
149
- formaction="user_dele">
150
-
151
- <i class="fas fa-times"></i>
152
-
153
- </button>
154
-
155
- </div></td>
156
-
157
- </tr>
158
-
159
- @endfor
160
-
161
-
162
-
163
- </tbody>
164
-
165
- ```

5

HTML部分更新

2019/06/07 14:46

投稿

kinisinai
kinisinai

スコア28

test CHANGED
File without changes
test CHANGED
@@ -90,4 +90,76 @@
90
90
 
91
91
  });
92
92
 
93
+
94
+
95
+ ```HTML
96
+
97
+ <tbody id="addgyou">
98
+
99
+
100
+
101
+ @for($i = 0; $i < count($user_info); $i++)
102
+
103
+
104
+
105
+ <tr>
106
+
107
+ <td>{{$user_info[$i]->login_id}}</td>
108
+
109
+ <td class="hensyu">{{$user_info[$i]->office_name}}</td>
110
+
111
+ <td class="hensyu">{{$user_info[$i]->user_name}}</td>
112
+
113
+ <td class="hensyu">{{$user_info[$i]->kana}}</td>
114
+
115
+ @if($user_info[$i]->member_kbn == 0)
116
+
117
+ <td class="kbn">フリー会員</td> @elseif($user_info[$i]->member_kbn ==
118
+
119
+ 1)
120
+
121
+ <td class="kbn">プレミアム会員(個人)</td>
122
+
123
+ @elseif($user_info[$i]->member_kbn == 2)
124
+
125
+ <td class="kbn">プレミアム会員(法人)</td> @endif
126
+
127
+ @if($user_info[$i]->serial_number != NULL)
128
+
129
+ <td>ログイン</td> @else
130
+
131
+ <td>ログオフ</td> @endif
132
+
133
+ <td style="width: 100px" class="text-center"><div
134
+
135
+ style="display: inline-flex">
136
+
137
+ <button type="submit" id="tdatai" class="btn btn-success" title="編集"
138
+
139
+ formaction="/edit_user">
140
+
141
+ <i class="fas fa-pencil-alt"></i>
142
+
143
+ </button>
144
+
145
+ &nbsp;&nbsp;
146
+
147
+ <button class="btn btn-danger btn-dell" title="削除"
148
+
149
+ formaction="user_dele">
150
+
151
+ <i class="fas fa-times"></i>
152
+
153
+ </button>
154
+
155
+ </div></td>
156
+
157
+ </tr>
158
+
159
+ @endfor
160
+
161
+
162
+
163
+ </tbody>
164
+
93
165
  ```

4

2019/06/07 14:46

投稿

kinisinai
kinisinai

スコア28

test CHANGED
File without changes
test CHANGED
@@ -30,7 +30,7 @@
30
30
 
31
31
 
32
32
 
33
- ```jQuery
33
+ ```js
34
34
 
35
35
  $(function($){
36
36
 
@@ -90,4 +90,4 @@
90
90
 
91
91
  });
92
92
 
93
- ```.js
93
+ ```

3

2019/06/07 14:38

投稿

kinisinai
kinisinai

スコア28

test CHANGED
File without changes
test CHANGED
@@ -30,9 +30,9 @@
30
30
 
31
31
 
32
32
 
33
- ```Jquery
33
+ ```jQuery
34
34
 
35
- jQuery(function($){
35
+ $(function($){
36
36
 
37
37
  $('.hensyu').click(function(){
38
38
 
@@ -90,4 +90,4 @@
90
90
 
91
91
  });
92
92
 
93
- ```
93
+ ```.js

2

2019/06/07 14:37

投稿

kinisinai
kinisinai

スコア28

test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,6 @@
1
1
  HTML5のrequiredについて質問があります。
2
2
 
3
- 以前も質問させていたのですが解決できなかったのでもう少しまとめてもう一度質問させていただきます。
3
+ 以前も質問させていただいたのですが解決できなかったのでもう少しまとめてもう一度質問させていただきます。
4
4
 
5
5
  初心者なのでよろしくお願いします。
6
6
 
@@ -21,6 +21,10 @@
21
21
 
22
22
 
23
23
  実際に下記のコードのような記述をしているのですが吹き出しが出てくれなくて困っています。
24
+
25
+
26
+
27
+ 分かりにくい文章で申し訳ありません。
24
28
 
25
29
 
26
30
 

1

2019/06/07 13:16

投稿

kinisinai
kinisinai

スコア28

test CHANGED
File without changes
test CHANGED
File without changes