为什么将 cssClass 应用于 as:label 在 Struts 2 中创建两个标签?
的任何想法...
<s:label label="%{getText('userDetails')}" cssClass="headerLabel"/>
关于为什么会导致这样
<label class="label" for="">User Details:</label>
<label id="" class="headerLabel"></label>
Any thoughts on why this...
<s:label label="%{getText('userDetails')}" cssClass="headerLabel"/>
results in this..
<label class="label" for="">User Details:</label>
<label id="" class="headerLabel"></label>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
显然这正是
标签的作用。但我无法找到将 css 应用到第一部分的方法。Apparently this is just what the
<s:label>
tag does. There is no way I can find to apply css to the first part though.您使用的是哪个版本的 struts (2.2.1)?
您是否尝试将标签指令更改为:
如果仍然不起作用,请在 WEB-INF/classes/template/simple/ application 文件夹中创建一个名为 label.ftl 的新文件,其中包含以下内容:
Which version of struts are you using (2.2.1)?
Did you try to change your label directive to:
If it still doesn't work create a new file called label.ftl inside your WEB-INF/classes/template/simple/ application folder with this content: