JSP -if != 参数的条件为空

发布于 2025-01-14 01:55:50 字数 728 浏览 1 评论 0原文

我有一个获取参数的 jsp 表单页面,我需要检查其中之一是否 != null ,我尝试编写条件但它不起作用: 它转到 if 块,而不是以任何方式转到 else 块(分别显示 null 或值)。

代码:

</div>
            <div class="grid_8 row12 td_style_fieldValue">
            <% if(!userData7.isEmpty()){%>
            <div id="personalId" class="data_style_payment" disabled="disabled" ><%=userData7%></div>
            <%}else{%>
            <input type="text" pattern="[0-9]*" id="personalId" name="personalId" maxlength="9" dir="ltr" autocomplete="off" onkeyup="limitInput(this,9)" onchange="return validatePersonalId()"/>
            <%}%>
            </div>

“userData7”是一个有值的参数。 请帮助我,我在这里缺少什么?if:else 语法是否正确? tnx

I a have jsp form page which get parameters an I need to check if one of them != null ,I have tried to write the condition but its not working:
It went to the if block and not to the else block any way(display null or the value respectively).

The code:

</div>
            <div class="grid_8 row12 td_style_fieldValue">
            <% if(!userData7.isEmpty()){%>
            <div id="personalId" class="data_style_payment" disabled="disabled" ><%=userData7%></div>
            <%}else{%>
            <input type="text" pattern="[0-9]*" id="personalId" name="personalId" maxlength="9" dir="ltr" autocomplete="off" onkeyup="limitInput(this,9)" onchange="return validatePersonalId()"/>
            <%}%>
            </div>

"userData7" is a parameter with value.
please assist me what am I missing here ?does the if:else syntax is right?
tnx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文