thymeleaf 与 jsp转化对应表

c:forEach与th:each
<select name="stationId" id="stationId" class="form-control" 
          onchange="deviceData.getDevList();">

		<c:forEach var="station" items="${stationInfoList}">
				<option value ="${station.id}" 
<c:if test="${station.id==stationId}">selected="selected"</c:if> >${station.stationName}</option>
			</c:forEach>

</select>
<select name="stationId" id="stationId" class="form-control" onchange="deviceData.getDevList();">
									
<option th:each="station:${stationInfoList}" th:value ="${station.id}"  th:text="${station.stationName}" th:selected="${station.id} eq ${stationId}">${station.stationName}</option>
								
</select>

select对应

<select id="type" name="type" class="form-control" onchange="deviceData.changeType()">
		<option value="1" <c:if test="${type==1}">selected="selected"</c:if>>当天</option>
		<option value="2" <c:if test="${type==2}">selected="selected"</c:if>>近三天</option>
		<option value="3" <c:if test="${type==3}">selected="selected"</c:if>>近一周</option>
		<option value="4" <c:if test="${type==4}">selected="selected"</c:if>>自定义</option>
</select>
<select id="type" name="type" class="for
  • 3
    点赞
  • 11
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值