我们可以在单页中混合struts和html标签吗
我有 jsp 文件,其中大多数 struts 标记现在对于某些字段我必须使用简单的 html 标记 但是当我放置 html 标签时,页面的格式会改变。 如果我只使用 struts 标签,那么每个 struts 标签都会写在新行中。 我怎样才能在单行中显示两个不同的struts标签。
i have jsp file in which most of tha struts tag now for some field i have to use simple html tag
but when i put html tag the format of page is chaged.
if i use only struts tag then each strut tag are written in new row so. how can i show two different struts tag in single row.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在JSP 中使用普通的HTML 标记和Struts 标记。 Struts 在这方面并不严格。 关于您收到的错误,如果您能发布您使用的代码并详细描述您收到的错误,那就更好了。
请注意,我还没有真正在 Struts2 中工作过 - 仅在 Struts 1 中工作过,但我认为您仍然应该能够在 Struts2 中混合普通 HTML 标签与 Struts 标签...
You can use normal HTML tags along with Struts tags in a JSP. Struts isn't strict in that way. Regarding the error that you get, it would be much better if you could post the code you use and describe in detail the error that you get.
Note that I haven't really worked in Struts2 - only in Struts 1, but I assume you should still be able to mix normal HTML tags with Struts tags in Struts2 too...