gpt4 book ai didi

spring - 如何禁用 Spring 形式复选框?

转载 作者:行者123 更新时间:2023-12-04 05:13:55 25 4
gpt4 key购买 nike

在我的jsp中,对于某些情况,我希望该复选框存在,但不想让用户选中或取消选中它。

我不确定如何实现这一目标。我尝试了以下

<form:checkbox path="..." disabled = "disabled"> 
<form:checkbox path="..." disabled = "true">
<form:checkbox path="..." readonly = "readonly">

似乎没有任何作用。

有人可以对此有所启发吗?

谢谢..

最佳答案

disabled中的<spring:checkbox>属性应设置为truefalse,并且复选框不具有readonly属性。所以

<form:checkbox path="corespondingPath" disabled = "true">   

应该管用。

很少的链接
Spring doc link.
Readonly and Disabled property in Spring form input

您可以根据情况使用JSTL添加它
<c:choose>
<c:when test="${condition}">
// Add checkbox with disabled="true"
<form:checkbox path="desiredPAth" disabled="true" />
</c:when>
<c:otherwise>
// Do something else
</c:otherwise>
</c:choose>

关于spring - 如何禁用 Spring 形式复选框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11620807/

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