左边部分添加到右边

 <style>
    * {
        margin: 0;
        padding: 0;
    }

    div.centent {
        float: left;
        text-align: center;
        margin: 10px;
    }

    span {
        display: block;
        margin: 2px 2px;
        padding: 4px 10px;
        background: #898989;
        cursor: pointer;
        font-size: 12px;
        color: white;
    }
    </style>
 <div class="centent">
        <select multiple="multiple" id="select1" style="width:100px;height:160px;">
            <option value="1">选项1</option>
            <option value="2">选项2</option>
            <option value="3">选项3</option>
            <option value="4">选项4</option>
            <option value="5">选项5</option>
            <option value="6">选项6</option>
            <option value="7">选项7</option>
        </select>
        <div>
            <span id="add">选中添加到右边&gt;&gt;</span>
            <span id="add_all">全部添加到右边&gt;&gt;</span>
        </div>
    </div>
    <div class="centent">
        <select multiple="multiple" id="select2" style="width: 100px;height:160px;">
            <option value="8">选项8</option>
        </select>
        <div>
            <span id="remove">&lt;&lt;选中删除到左边</span>
            <span id="remove_all">&lt;&lt;全部删除到左边</span>
        </div>
    </div>
    <script type="text/javascript" src="jquery-1.7.js"></script>
    <script type="text/javascript">
    jQuery.noConflict();
    (function($) {
        /*将选中的移动到右边*/
        $('#add').click(function() {
            var $options = $('#select1 option:selected');
            $options.appendTo('#select2');
        });

        /*将全部的添加到右边*/
        $('#add_all').click(function() {
            var $options = $('#select1 option');
            $options.appendTo('#select2');
        });

       /* $('#select1 option').dblclick(function(event) {
            var $options = $('#select1 option:selected');
            $options.appendTo('#select2');
        });*/

        /*方法二*/
        $('#select1').dblclick(function(event) {
            /*this代表当前点击的option*/
            var $options = $('option:selected', this);
            $options.appendTo('#select2');
        });



    })(jQuery);
    </script>
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值