JavaScript +将项目添加到下拉列表中
我的 JSP 页面中有两个下拉菜单
1. lstA
test1
test2
test3
test4
2. lstB
现在选择 lstA,我想将 lstA 的所有项目填充到 lstB 中,除了选择的项目之外,lstA 的内容也应保持不变。
我怎样才能实现这个目标?
我尝试这样做,但从 lstA 中删除了一些随机项目,这非常复杂。
I have two dropdowns in my JSP page
1. lstA
test1
test2
test3
test4
2. lstB
Now on selection of lstA, I want to populate all the items of lstA into lstB except the select one, also the content of lstA should remain the same.
How can I achieve this?
I tried to do it, but from lstA some random items get removed, which is quite wired.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你的答案几乎是正确的。
需要注意的是:添加之前需要清除客户端列表,否则最终会出现越来越多的项目,并且在将其添加到客户端列表之前需要克隆该选项,因为节点只能存在于任何时候都有 1 位家长。
这已经过测试并且对我有用:
you almost had it correct in your answer there.
things to note : you need to clear the client list before adding, otherwise you'll end up with more and more items on it, and you need to clone the option before adding it to the client list, because a node can only exist in 1 parent at any time.
this has been tested and works for me :
尝试一下
该值将附加到下拉列表中。
Try this
The Value will append to the drop down list.
其中 selectItem 和 clientItem 是下拉菜单。
当我这样做时,一些数据被随机填充到 clientItem 中,并且 selectItem 中的一些项目被删除。
Where selectItem and clientItem are drop downs.
When I do this, some data is randomly populated into clientItem and some items from selectItem are removed.