Jquery多选框互相内容交换的实例代码

2019-12-24,,,,

复制代码 代码如下:
<head runat="server">
    <title>无标题页</title>
    <script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
            // 把选择项追加给对方
            $('#add').click(function(){
            var options=$('#select1 option:selected');
            var remove=options.remove();
            remove.appendTo("#select2");
            });
            // 把所有项追加给对方
            $('#addAll').click(function(){
            var options=$('#select1 option');
            var remove=options.remove();
            remove.appendTo("#select2");
            });
            // 把选择项退回给对方
            $('#remove').click(function(){
            var options=$('#select2 option:selected');
            var remove=options.remove();
            remove.appendTo("#select1");
            });
            // 把全部项退回给对方
            $('#removeAll').click(function(){
            var options=$('#select2 option');
            var remove=options.remove();
            remove.appendTo("#select1");
            });
        });
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <div id="left">
        <select multiple="multiple" id="select1" style="width:100px;height:160px">
        <option>选项1</option>
        <option>选项2</option>
        <option>选项3</option>
        <option>选项4</option>
        <option>选项5</option>
        </select>
    </div>
    <div>
        <span id="add">选中项添加至右边>></span><br />
        <span id="addAll">全部添加到右边>></span>
    </div>
    <div id="right">
        <select multiple="multiple" id="select2" style="width:100px;height:160px"></select>
    </div>
    <div>
        <span id="remove"><<选中项还原至左边</span><br />
        <span id="removeAll"><<全部还原至左边</span>
    </div>
    </form>
</body>

您可能感兴趣的文章:

  • jQuery获取复选框被选中数量及判断选择值的方法详解
  • 简单实现jQuery多选框功能
  • jQuery中实现prop()函数控制多选框(全选,反选)
  • jQuery 获取多选框的值及多选框中文的函数
  • jquery中表单 多选框的一种巧妙写法
  • jQuery实现的多选框多级联动插件
  • jQuery对下拉框,单选框,多选框的操作
  • jquery对单选框,多选框,文本框等常见操作小结
  • jquery select多选框的左右移动 具体实现代码
  • jQuery多选框选择数量限制方法

《Jquery多选框互相内容交换的实例代码.doc》

下载本文的Word格式文档,以方便收藏与打印。