HTML选择元素在提交时未POSTED

时间:2012-12-23 13:18:23

标签: html jsp post get

我正在使用HTML和JSP。

我有以下表格:

<form   name="test" id="test" method="get" ACTION="result.jsp">

<input id="enteredGene" type="text" name="enteredGene" autocomplete="off" Style="position:absolute; top: 63px; left: 295px; width: 115px; margin-top: 6px; height: 22px; right: -4px;"/><br />

<input type="text" id="microarrayFileName" name="microarrayFileName" Style="position:absolute; top: 209px; left: 133px; width: 275px; margin-top: 6px; height: 22px; right: 250px;"  oninput="enableSubmit()"/><br />

 <select name= "insertGenes" id="insertGenes"  multiple="multiple" style="position:absolute; top: 103px; left: 138px; width: 275px; height: 71px;" onfocus="enableRemoveButton()">
         </select>
</form>

我的问题是,当我提交表单时,只会发布前2个标签的“text”类型的标签。名称为“insertGenes”的“select”元素未发布。我知道通过检查获取列表。

它只显示了这个:

http://localhost:8080/geneOntology/result.jsp?enteredGene=&microarrayFileName=GSM34635.pad

为什么没有张贴选择元素?我也尝试在提交后得到它的值,我发现它为NULL。

我尝试添加其他选择元素,但它们都有同样的问题。有人可以帮忙吗?谢谢。

1 个答案:

答案 0 :(得分:2)

您的选择项目没有<option> ..</option>个元素