質問編集履歴
2
文字の修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -20,4 +20,63 @@
|
|
20
20
|
$("table tr:first-of-type td:nth-of-type(9) span").clone().prependTo("table td:nth-of-type(9)");
|
21
21
|
});
|
22
22
|
|
23
|
+
<table>
|
24
|
+
<tr>
|
25
|
+
<td><span>プラン</span></td>
|
26
|
+
<td><span>データ容量</span></td>
|
27
|
+
<td><span>バージョン情報</span></td>
|
28
|
+
<td><span>料金</span></td>
|
29
|
+
</tr>
|
30
|
+
<tr>
|
31
|
+
<td>無料プラン</td>
|
32
|
+
<td> 5GB </td>
|
33
|
+
<td> なし </td>
|
34
|
+
<td> 無料 </td>
|
35
|
+
</tr>
|
36
|
+
<tr>
|
37
|
+
<td> 個人事業主プラン </td>
|
38
|
+
<td> 30GB </td>
|
39
|
+
<td>1ヶ月まで </td>
|
40
|
+
<td> 1000円/月 </td>
|
41
|
+
</tr>
|
42
|
+
<tr>
|
43
|
+
<td> 法人プラン </td>
|
44
|
+
<td> 100GB </td>
|
45
|
+
<td> 無制限 </td>
|
46
|
+
<td> 5000円/月 </td>
|
47
|
+
</tr>
|
48
|
+
</tbody>
|
49
|
+
</table>
|
50
|
+
|
51
|
+
|
52
|
+
↓↓↓↓↓↓↓↓
|
53
|
+
|
54
|
+
<table>
|
55
|
+
<tr>
|
56
|
+
<td><span>プラン</span></td>
|
57
|
+
<td><span>データ容量</span></td>
|
58
|
+
<td><span>バージョン情報</span></td>
|
59
|
+
<td><span>料金</span></td>
|
60
|
+
</tr>
|
61
|
+
<tr>
|
62
|
+
<td><span>プラン</span>無料プラン</td>
|
63
|
+
<td><span>データ容量</span> 5GB </td>
|
64
|
+
<td> <span>バージョン情報</span>なし </td>
|
65
|
+
<td> <span>料金</span>無料 </td>
|
66
|
+
</tr>
|
67
|
+
<tr>
|
68
|
+
<td><span>プラン</span>個人事業主プラン </td>
|
69
|
+
<td><span>データ容量</span> 30GB </td>
|
70
|
+
<td><span>バージョン情報</span>1ヶ月まで </td>
|
71
|
+
<td> <span>料金</span>1000円/月 </td>
|
72
|
+
</tr>
|
73
|
+
<tr>
|
74
|
+
<td><span>プラン</span>法人プラン </td>
|
75
|
+
<td><span>データ容量</span> 100GB </td>
|
76
|
+
<td><span>バージョン情報</span>無制限 </td>
|
77
|
+
<td> <span>料金</span>5000円/月 </td>
|
78
|
+
</tr>
|
79
|
+
</tbody>
|
80
|
+
</table>
|
81
|
+
|
23
82
|
```
|
1
文字の修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,11 +1,3 @@
|
|
1
|
-
### 前提・実現したいこと
|
2
|
-
|
3
|
-
ここに質問の内容を詳しく書いてください。
|
4
|
-
(例)PHP(CakePHP)で●●なシステムを作っています。
|
5
|
-
■■な機能を実装中に以下のエラーメッセージが発生しました。
|
6
|
-
|
7
|
-
### 発生している問題・エラーメッセージ
|
8
|
-
|
9
1
|
```
|
10
2
|
初めて質問します。不手際等ございましたら申し訳ございません。
|
11
3
|
以下のようにtable1行目のtdの内容を二行目以降にも表示させたいのですが
|
@@ -28,12 +20,4 @@
|
|
28
20
|
$("table tr:first-of-type td:nth-of-type(9) span").clone().prependTo("table td:nth-of-type(9)");
|
29
21
|
});
|
30
22
|
|
31
|
-
```
|
23
|
+
```
|
32
|
-
|
33
|
-
### 試したこと
|
34
|
-
|
35
|
-
ここに問題に対して試したことを記載してください。
|
36
|
-
|
37
|
-
### 補足情報(FW/ツールのバージョンなど)
|
38
|
-
|
39
|
-
ここにより詳細な情報を記載してください。
|