从下拉列表中复制选项列表。 jQuery
Html 代码
<select id="dropdwon1">
<option value="1">Item1</option>
<option value="2">Item2</option>
<option value="3">Item3</option>
</select>
<select id="dropdwon2"></select>
我需要使用 jQuery 将所有选项从 dropdown1 复制到 dropdown2。是否可以简单的复制内容?
Html code
<select id="dropdwon1">
<option value="1">Item1</option>
<option value="2">Item2</option>
<option value="3">Item3</option>
</select>
<select id="dropdwon2"></select>
I need copy all options from dropdown1 to dropdown2, using jQuery. Whether it is possible to copy contents simply?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
jsfiddle 链接
jsfiddle link
你也可以让它“克隆”当前(不是初始)选定的项目吗?
Can you make it "clone" currently (not initial) selected item too?
Jquery 克隆通常是可行的方法,但它不适用于以下项目:
选择 check 和 radio
解决方法是在克隆之前设置 html dom 属性,这是我的做法
将所选 dom 属性设置为 true 允许克隆有效地复制值
Jquery clone is normaly the way to go but it doesn't work well with items such as
select check and radio
The work around is to set the html dom attributes before cloning here is how i do it
Setting the selected dom attribute to true allow clone to copy the value effectively
试试这个:
Try this: