大家帮忙看看这个表单样式怎样改换成这样
<td align="right">到岗时间:</td><td colspan="3">
<SELECT name=workdate id="workdate">
<OPTION value="0" <%if rst("resume_workdate")=0 then response.write "selected" end if%>>随时</option>
<OPTION value="7" <%if rst("resume_workdate")=7 then response.write "selected" end if%>>1周以内</option>
<OPTION value="14" <%if rst("resume_workdate")=14 then response.write "selected" end if%>>2周以内</option>
<OPTION value="30" <%if rst("resume_workdate")=30 then response.write "selected" end if%>>1个月内</option>
<OPTION value="60" <%if rst("resume_workdate")=60 then response.write "selected" end if%>>1~3个月</option>
<OPTION value="90" <%if rst("resume_workdate")=90 then response.write "selected" end if%>>3个月以后</OPTION>
</SELECT> </td>
这是目前关于到岗时间表单的样式,如图1,我想改成图2样式,可以直接在代码的“值”中替换吗?如果不行应该怎样改呢?