2 个相关的多选表单元素
我想并排创建 2 个多选。第一个已填充,但第二个是空的。仅当我从第一个选项中选择一个选项时,第二个选项才会填充,并且取决于第一个选项的值。
我认为做到这一点的唯一方法是使用 javascript。有人可以证实这一点吗?您知道现有的例子吗?
我正在使用 jquery,但不喜欢使用插件。 我还考虑使用 Zend,因此如果存在现有组件那就太好了。
I want to create 2 multiselect side by side. The first one is populated, but the 2nd is empty. The 2nd gets populated only when I select an option from the 1st one and depends on the value of the 1st one.
I'm thinking the only way to do this is with javascript. Can someone confirm this, and do you know of existing examples.
I'm using jquery, but prefer to not use plugins.
I'm also thinking to use Zend so if an existing component exists that would be great.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个演示
您可以通过一些 DOM 操作轻松地做到这一点。
HTML
JavaScript
Here's a demo
You can easily do this with some DOM manipulation.
HTML
javascript