Title
div{
width: 200px;
float: left;
text-align: center;
}
select{
width: 100px;
height: 140px;
}
$(function (){
$("#left button:eq(0)").click(function (){
// alert($("select[name='sele1']").val());
$("select[name='sele1'] option:selected").appendTo($("select:eq(1)"));
});
$("#left button:eq(1)").click(function (){
$("select[name='sele1'] option").appendTo($("select:eq(1)"));
});
$("#rigth button:eq(0)").click(function (){
$("select[name='sele2'] option:selected").appendTo($("select:eq(0)"));
});
$("#rigth button:eq(1)").click(function (){
$("select[name='sele2'] option").appendTo($("select[name='sele1']"));
});
});
1
2
3
4
5
6
选中添加到右边
全部添加到右边
选中删除到左边
全部删除到左边
本文共 28 个字数,平均阅读时长 ≈ 1分钟
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有