首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

在tomcat和resin上使用<select>标签时的有关问题

2012-11-09 
在tomcat和resin下使用select标签时的问题写代码时碰到的一个问题,类似下的面的代码:select namesele

在tomcat和resin下使用<select>标签时的问题
写代码时碰到的一个问题,类似下的面的代码:

<select name="selecttype">  <option value="" selected>--请选择--</option>  <option value="1" <c:iftest="${type==1}">selected="selected"        </c:if>>正 常</option>  <option value="0" <c:if test="${type==0}"> selected="selected" </c:if>>暂 停</option>  <option value="-1" <c:if test="${type==-1}"> selected="selected" </c:if>>废 弃</option></select><input type="submit" value="查询" style="width: 80px" />



如果什么都不选,点查询按钮时返回全部数据。
在tomcat6.x服务器下包含以上代码的页面显示正常但在resin3.x服务器下如果什么都不选点查询按钮的话,,<select>中的值会变成"暂停"而不是默认的"--请选择--"最后把el表达式中的${type==1}换成${type=='1'}后,在resin3.x下就可以正常显示了.

热点排行