gpt4 book ai didi

html - 使用 jsp 有条件地显示 html 元素

转载 作者:太空狗 更新时间:2023-10-29 15:37:17 25 4
gpt4 key购买 nike

我想根据从数据库中读取的 bool 值显示第二个密码输入字段。从数据库读取的代码已经写好了,而且可以运行。我遇到的问题是列表元素的条件显示。我对 jsp 知之甚少——用谷歌搜索答案,并得出以下结论,女巫不起作用。代码:

			<ul>
<li><label for="username">Username</label>
<input type="username" name="username" placeholder="username" required>
</li>
<li><label for="password">Password</label>
<input type="password" name="password" placeholder="password" required>
</li>
<!-- conditional display of a second password field -->
<%
if (@showDoublePasswords == true) {
%>
<li><label for="password">Password 2</label>
<input type="password" name="password" placeholder="password" required>
</li>

<% } %>
</ul>

最佳答案

试试这个

<ul>
<li><label for="username">Username</label>
<input type="username" name="username" placeholder="username" required>
</li>
<li><label for="password">Password</label>
<input type="password" name="password" placeholder="password" required>
</li>
<!-- conditional display of a second password field -->
<%
//Remove '@'
if (showDoublePasswords == true)
{
%>
<li><label for="password">Password 2</label>
<input type="password" name="password" placeholder="password" required>
</li>

<% }
%>
</ul>

*

关于html - 使用 jsp 有条件地显示 html 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32585039/

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