gpt4 book ai didi

jsp - 如何在 JSTL 中获取随机数?

转载 作者:行者123 更新时间:2023-12-04 00:02:17 24 4
gpt4 key购买 nike

我想得到类似在 JSTL 中生成的下一个代码的东西

<c:choose>
<c:when test="${random number is even}">
<div class="redlogo">
</c:when>
<c:otherwise>
<div class="greenlogo">
</c:otherwise>
</c:choose>

最佳答案

这个有点丑,但它有效......

<c:set var="rand"><%= java.lang.Math.round(java.lang.Math.random() * 2) %></c:set>

稍后您可以查看 ${rand mod 2 == 0}${rand mod 2 == 1}得到你想要的输出。

关于jsp - 如何在 JSTL 中获取随机数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2273069/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com