jstl forEach遍歷

sxjlinux發表於2020-11-25

1、表示起始位置為0(begin),結束位置為0(beng),每次迴圈的步長為1(step)次,因此此迴圈只從下標為0的位置迴圈一次。

<select class="form-control" id="start_month1" name="start_month">
	<c:forEach items="${bizMonthlies}" begin="0" end="0" step="1" var="entry">
		<option value="${entry.monthD}" style="text-align: center">${entry.name}</option>
	</c:forEach>
</select>

 

 

 

相關文章