使用struts在下拉列表中选择group
任何人都可以帮助使用 struts 实现 optgroup 的相同功能吗?
Can anyone please help in implementing the same functionality of optgroup using struts.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,无法使用 Struts 标签创建选择组。
您必须求助于使用纯 HTML 标记
标记,并使用 JSTL
标记或Struts
< /a> 标签。这样的标签已在Struts 2中添加,但对于Struts 1没有'语气。
As far as I know, there is no way of creating select groups using Struts tags.
You will have to resort to using the plain HTML tag
<optgroup>
tag and create your select options by using either the JSTL<c:forEach>
tag or the Struts<logic:iterate>
tag.Such a tag was added in Struts 2 but for Struts 1 there isn't one.