是否可以使用 Struts 访问集合中的第三个元素?
有没有办法在 Struts/JSP 中执行以下操作?
<html:checkbox property="list.get(0).checked" />
先感谢您。
Is there a way to do the following thing in Struts / JSP?
<html:checkbox property="list.get(0).checked" />
Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想访问 JSTL 列表中的第三个元素,语法就像数组一样:
请注意,如果您是 JSTL/EL 新手,则必须将适当的 jar 添加到类路径中并引用标记库。
If you want to access the 3rd element in a list in JSTL, the syntax is just like arrays:
Note that if you are new to JSTL/EL you'll have to add the appropriate jar to your classpath and reference the tag library.