在JSP中设置下拉值

时间:2014-07-16 03:43:15

标签: jsp scriplets

我的jsp fileType 中有一个变量,我想将fileType设置为下拉列表的选定值。

<td>
<select name="file_type" id="file_type" class="mlselect">
    <option value="" selected="selected" disabled="true" <%= ("".equals(fileType))?("selected='selected'"):""%> >-----Select A File Type -----</option>
    <option id="IMAGE" value="IMAGE" <%= ("IMAGE".equals(fileType))?("selected='selected'"):""%>>Image file</option>
    <option id="VIDEO" value="VIDEO" <%= ("VIDEO".equals(fileType))?("selected='selected'"):""%>>Video file</option>
</select> 

以上将是我的代码,但它不起作用。有什么帮助吗?

0 个答案:

没有答案