如何在 struts2 表单中添加复选框标签的链接
我正在尝试添加一个链接到带有 xhtml 主题的 struts2 表单中的标签。有没有办法使用 struts 标签来做到这一点,或者我是否必须使用 CSS 来定位普通链接?
I'm trying to add a link to a label in a struts2 form with the xhtml theme. Is there a way I can do it using a struts tag or do I have to use CSS to position a normal link?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将主题更改为简单并使用常规 html 即可。我开始尝试使用 xhtml 主题,我确实尝试过它,但它对我来说并不直观。所以我只是把所有地方的布局都改成了简单的。
在 struts.xml 中只需添加
(就在 struts 标签之后)
如果您正在现有应用程序中工作,您可以在每个页面的基础上设置主题,您将在 struts2 站点上找到所有这些内容。 http:// /struts.apache.org/2.0.14/docs/can-i-change-theme-on-a-per-page-basis.html
Just change the theme to simple and use regular html. I started off trying to use the xhtml theme, I really gave it a run but it just wasn't intuitive for me. So I just changed the layout to simple everywhere.
In struts.xml just add
(right after the struts tag)
If you are working in an existing application, you can set the theme on a per page basis, you'll find all this on the struts2 site. http://struts.apache.org/2.0.14/docs/can-i-change-theme-on-a-per-page-basis.html