zl程序教程

您现在的位置是:首页 >  后端

当前栏目

jsp页面刷新后保留文本输入框和下拉框的值

JSP 页面 文本 刷新 保留 输入框 下拉框
2023-09-14 09:00:23 时间
select name= status      option value= all   c:if test= ${status eq  all } selected /c:if 状态 /option      option value= notstart   c:if test= ${status
 select name="status" 

     option value="all"  c:if test="${status eq all}" selected /c:if 状态 /option 

     option value="notstart"  c:if test="${status == notstart}" selected /c:if 未开始 /option 

     option value="running"  c:if test="${status eq running}" selected /c:if 进行中 /option 

     option value="end"  c:if test="${status eq end}" selected /c:if 已结束 /option 

    /select 


保留文本框输入值

特价活动名称: input type="text" name="sname" value="${sname}"/   nbsp; nbsp; nbsp;


本文出自 “点滴积累” 博客,请务必保留此出处http://tianxingzhe.blog.51cto.com/3390077/1675567