大家好 我已经创建了一个 jsp 页面,其中我创建了两个从数据库填充的下拉菜单。当我测试页面时它工作正常,但我的经理告诉我下拉菜单中的字段需要如下图所示的背景颜色。我该怎么做呢?如果这些字段是硬编码的,我知道该怎么做,但我不知道在这种情况下怎么做。我的代码也在底部.. 谢谢!
`<form:form method="POST" commandName="excsAnaSelNav">
<br>
<table width="100%">
<tr>
<td width="20%"></td>
<td width="20%"> Type:
<form:select id="type" onChange = 'checkType()'path="analysisEvents">
<form:option value="All" label="--- All ---" />
<form:options items="${analysisEvents}" />
</form:select>
</td>
<td width="20%"> Forecast ISC:<form:select path="iscCodes">
<form:option value="All" label="--- All ---" />
<form:options items="${iscCodes}" />
</form:select>
</td>
<td width="30%"><div id="sctry" style="visibility:hidden">
Actual ISC: <select style="width:50px" id="actualisc">
<option value="ALL" selected>All</option></select></div>`