JSP -if != 参数的条件为空
我有一个获取参数的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论