struts2选择标签,第二次选择基于第一次选择的值
我有 2 个选择,我希望第二个选择列表根据第一个选择的选定值加载。换句话说,首先选择的是一个对象列表,这些对象每个都有另一个对象的列表。所以我想根据第一个选择的选定对象加载第二个列表。我知道可以使用 JQuery 来完成,但是我可以在没有 JavaScript/JQuery 的情况下完成此操作吗?
提前致谢。
I have 2 select, I want the second select list loads based on selected value of first select. In another word first select is a list of objects, those objects each has a list of another objects. so I want load second list based on selected object of first select. I know that can be done using JQuery, but can I do this without JavaScript/JQuery?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一个标签可以为您执行此操作 http://struts.apache.org /2.x/docs/doubleselect.html
开箱即用,它可能使用 Dojo API 或使用服务器端请求来生成第二个列表。我没有使用过 Struts 中的任何 JQuery UI。
There is a tag that does this for you http://struts.apache.org/2.x/docs/doubleselect.html
Out of the box it probably uses Dojo API or uses a server side request to generate the second list. I have not used any of the JQuery UI in Struts.
不,如果没有 Javascript,你就无法做到这一点。使用静态 HTML 无法实现这种效果; HTML 表单上的下拉字段预先加载了其选项,并且独立于表单上的其他字段。
No, you can't do this without Javascript. With static HTML you can't achieve this effect; drop-down fields on HTML forms come pre-loaded with their options, and are independent of other fields on the form.