Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我的复选框:
<input type="checkbox" name="headC" id="headC" value="Head">
我有一个字符串变量<%=msmtHead%>,用于根据此逻辑确定是否选中了此复选框:If (<%=msmtHead%> !="")检查else不检查。
<%=msmtHead%>
If (<%=msmtHead%> !="")
else
我该如何进行这项工作?我有几个这样的复选框需要类似地检查。
我的研究告诉我应该使用 JSTL,但我不知道如何使用<c:if>标签来测试字符串值。
<c:if>
您需要让 JSPchecked相应地打印属性。
checked
所以基本上,
<input type="checkbox" name="headC" id="headC" value="Head" <%= ("Head".equals(msmtHead) ? "checked" : "") %>>
或与 EL
<input type="checkbox" name="headC" id="headC" value="Head" ${msmtHead == 'Head' ? 'checked' : ''}>