質問編集履歴

1

HTMLを追記します

2016/11/22 03:45

投稿

hidepon
hidepon

スコア206

test CHANGED
File without changes
test CHANGED
@@ -99,3 +99,59 @@
99
99
 
100
100
 
101
101
  ```
102
+
103
+ HTML
104
+
105
+ ```
106
+
107
+ <table>
108
+
109
+ <tbody>
110
+
111
+ <tr>
112
+
113
+ <th>カテゴリー</th>
114
+
115
+ <td>
116
+
117
+ <select name="parent" id="parent">
118
+
119
+ <option value ="101">parent-test1</option>
120
+
121
+ <option value ="002">parent-test2</option>
122
+
123
+ <option value ="001">test001</option>
124
+
125
+ </select>
126
+
127
+ <select name="child" id="child">
128
+
129
+ <option value ="101001">child-test1-1</option>
130
+
131
+ <option value ="101002">child-test1-2</option>
132
+
133
+ </select>
134
+
135
+ </td>
136
+
137
+ </tr>
138
+
139
+ <tr>
140
+
141
+ <th>製品種別</th>
142
+
143
+ <td>
144
+
145
+ <input type="radio" name="ptype" id="type1" class="type" value="1" checked="checked" />商品群A
146
+
147
+ <input type="radio" name="ptype" id="type2" class="type" value="2" />商品群B
148
+
149
+ </td>
150
+
151
+ </tr>
152
+
153
+ </tbody>
154
+
155
+ </table>
156
+
157
+ ```