我必须有 3 个问题。一种带有单选按钮选项,一种带有复选框,一种带有文本区域。我遇到的问题是所有问题都必须与每个问题下方的选择保持一致。我使用表格将问题放在同一行,但我遇到的问题是我无法在每个适当的问题下获得选择(单选按钮、复选框和文本区域)。
这是我收到的:
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>
我尝试使用每个选项,但它直接在彼此下方显示问题和答案,这不是我需要的。这让我发疯,因为我知道这很简单。有人知道如何解决这个问题吗?