在 struts 标签内使用 scriptlet 标签

发布于 2024-10-17 05:17:41 字数 326 浏览 3 评论 0原文

我正在尝试禁用文本字段:

<html:text property="firstName" style="width: 100px;">  
                        <%=isDisabled%>
                        </html:text>

String isDisabled = "";
if (x == null || x.equals("")) {     
     isDisabled = "disabled='true'";

但是文本字段没有被禁用..有什么想法吗?

i am trying to disable a text field:

<html:text property="firstName" style="width: 100px;">  
                        <%=isDisabled%>
                        </html:text>

String isDisabled = "";
if (x == null || x.equals("")) {     
     isDisabled = "disabled='true'";

But the text field is not getting disabled.. Any idea??

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你好,陌生人 2024-10-24 05:17:42

这很容易做到。首先,您确定文本框是否将被禁用(这必须是具有 true/false 值的字符串,而不是您尝试执行的禁用 ='true' ):

String isDisabled = String.valueOf(x == null || "".equals(x));

然后禁用该字段:

<html:text property="firstName" style="width: 100px;" disabled="<%=isDisabled%>" />

请参阅 此处 了解更多文档。

我不太记得了,但我认为你也可以直接使用布尔值:

boolean isDisabled = (x == null || "".equals(x));
<html:text property="firstName" style="width: 100px;" disabled="<%=isDisabled%>" />

This is quite easy to do. First you determine if the textbox will be disabled or not (this must be a string with true/false value, not disabled='true' as you were trying to do):

String isDisabled = String.valueOf(x == null || "".equals(x));

And then you disable the field:

<html:text property="firstName" style="width: 100px;" disabled="<%=isDisabled%>" />

See here for more documentation.

I don't remember exactly but I think you can also use a boolean directly:

boolean isDisabled = (x == null || "".equals(x));
<html:text property="firstName" style="width: 100px;" disabled="<%=isDisabled%>" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文