从下拉列表中复制选项列表。 jQuery

发布于 2024-10-07 10:08:43 字数 335 浏览 3 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

猫性小仙女 2024-10-14 10:08:43
$('#dropdwon1 option').clone().appendTo('#dropdwon2');

jsfiddle 链接

$('#dropdwon1 option').clone().appendTo('#dropdwon2');

jsfiddle link

放血 2024-10-14 10:08:43

你也可以让它“克隆”当前(不是初始)选定的项目吗?

$('#dropdwon1 option').eq(1).attr('selected', 'selected');
$('#dropdwon1 option').clone().appendTo('#dropdwon2');​

Can you make it "clone" currently (not initial) selected item too?

$('#dropdwon1 option').eq(1).attr('selected', 'selected');
$('#dropdwon1 option').clone().appendTo('#dropdwon2');​
诠释孤独 2024-10-14 10:08:43

Jquery 克隆通常是可行的方法,但它不适用于以下项目:
选择 check 和 radio

解决方法是在克隆之前设置 html dom 属性,这是我的做法

var selects = $('form').find('select') ;
selects.each ( function ( ) {
var selvalue = $( this ).val() ;
var options = $( this ).find('option') ;
options.each ( function () {
    if ( $( this ).attr( 'value' )  == selvalue ) 
        $( this ).attr( 'selected' , true ) ; 
    });
}) ; 
$('form').clone.appendTo( '#target' )

将所选 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

var selects = $('form').find('select') ;
selects.each ( function ( ) {
var selvalue = $( this ).val() ;
var options = $( this ).find('option') ;
options.each ( function () {
    if ( $( this ).attr( 'value' )  == selvalue ) 
        $( this ).attr( 'selected' , true ) ; 
    });
}) ; 
$('form').clone.appendTo( '#target' )

Setting the selected dom attribute to true allow clone to copy the value effectively

情场扛把子 2024-10-14 10:08:43

试试这个:

$('#dropdwon2')[0].options = $('#dropdwon1')[0].options;

Try this:

$('#dropdwon2')[0].options = $('#dropdwon1')[0].options;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文