我有一个jsp文件:
<div class="span12" id="result" style="position: relative; top:-57px;margin-left:-10px">
Is The Image Missing or Wrong?
<table>
<tr>
<td>
<input type="radio" name="imageprob" value="Missing" onclick="MissingSelected()">
Missing
<br>
<input type="radio" name="imageprob" value="Wrong" onclick="WrongSelected()">Wrong
</td>
<td></td> //content of this column to be set based on which radio button slected
</tr>
</table>
</div>
</div>
我想根据在第一列中选择的单选按钮设置表中第二列的内容。我该怎么做?