gpt4 book ai didi

java - 使用 if JSTL 调用 javascript 函数

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:58:38 24 4
gpt4 key购买 nike

有没有办法用 JSTL 在 if 中调用 javascript 函数?

这是代码

<c:choose>
<c:when test="${orderUploadAction.errors.size()==0}">

CALL JS FUNCTION HERE

</c:when>
<c:otherwise>

CALL JS FUNCTION HERE

</c:otherwise>
</c:choose>

最佳答案

试试这个

<c:choose>
<c:when test="${orderUploadAction.errors.size()==0}">
<script> yourFunctionName() </script>
</c:when>
<c:otherwise>
<script> yourAnotherFunctionName() </script>
</c:otherwise>
</c:choose>

关于java - 使用 if JSTL 调用 javascript 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27925219/

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