使用 JSTL 使文本字段禁用属性动态化
我有一个 struts 输入文本字段,我希望禁用属性根据动态值进行更改。 这不起作用:
<html:text property="startDate" maxlength="14" disabled='<c:out value="${bbsInfoModel.waitMode}"/>' />
当我在页面上使用 c:out... 时,会显示该值:
Test Value: <c:out value="${bbsInfoModel.waitMode}"/>
I have a struts input text field, and I want the disabled attribute to change based on a dynamic value.
This is not working:
<html:text property="startDate" maxlength="14" disabled='<c:out value="${bbsInfoModel.waitMode}"/>' />
When I just use the c:out... on the page, the value is displayed:
Test Value: <c:out value="${bbsInfoModel.waitMode}"/>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您还可以为此使用 HTML-el 标记:
因此,不要使用 html-text,而是使用 html-el:text。
这就是我必须做的事情才能让我的工作发挥作用。
You could also use a HTML-el tag for this:
so instead of html-text, put html-el:text.
This is what I had to do to make mine work.
您不能将自定义标签嵌入到另一个自定义标签中。试试这个:-
You cannot embed a custom tag in another custom tag. Try this:-