3つの質問があります。1 つはラジオ ボタン オプション付き、もう 1 つはチェックボックス付き、もう 1 つはテキストエリア付きです。私が抱えている問題は、すべての質問が同じ行にある必要があり、それらの各質問の下に選択肢があることです. テーブルを使用して同じ行で質問を取得しましたが、問題は、適切な質問ごとに選択肢 (ラジオ ボタン、チェックボックス、およびテキスト領域) を取得できないことです。
これは私が受け取っているものです:
Your question here: choice 1 choice 2. ques. here: c1, c2, c3, c4
私はこれを必要とする:
Your question here:
Choice 1
Choice 2
その形式でその質問のすぐ横に他の 2 つの質問があります。
これは私が以下で使用しているhtmlコーディングです:
<table>
<tr>
<td align="left"> Your question here:</td>
<td><input name="choice" type="radio" value="1" />Choice 1 </td>
<br />
<td><input name="choice" type="radio" value="2" checked="checked" />Choice 2</td>
<td align="center"> Your question here:</td>
<br>
<td><input name="choice" type="checkbox" value="choice1" />Choice 1</td>
<br>
<td><input name="choice" type="checkbox" value="choice2" />Choice 2</td>
<br>
<td><input name="choice" type="checkbox" value="choice3" />Choice 3</td>
<br>
<td><input name="choice" type="checkbox" value="choice4" checked="checked">Choice 4</td>
<td align="right"> Your question here:</td>
<td><br /><textarea name="other" rows="5" cols="35"></textarea></td>
</tr>
</table>
選択肢ごとに使用してみましたが、質問と回答の両方が直接下に表示されましたが、それは私が必要としているものではありません。私はそれが単純なものであることを知っているので、それは私を夢中にさせています. これを修正する方法を知っている人はいますか?