开发者社区> 问答> 正文

关于multiple select的 option display:none;

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>角色分配</title>
 <style>
.showOption{
display: block;
}
 
.hideOption{
display: none;
}
</style>
 
 
<!-- 引入js文件 -->
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script type="text/javascript">
     
        $(function(){
            //移到右边
            $('#add').bind('click', function() {
                //获取选中的选项,删除并追加给对方
                $('#select1 option:selected').appendTo('#select2');
             
            });
            //移到左边
            $('#remove').bind('click', function() {
                $('#select2 option:selected').appendTo('#select1');
            });
            //全部移到右边
            $('#add_all').bind('click', function() {
                if($("#unBindEnterpriseName").val().replace(/\s+/g, "").length > 0){
                    //获取全部的选项,删除并追加给对方
                    $('#select1').find("option[class='showOption']").appendTo('#select2');
                } else {
                    $('#select1 option').appendTo('#select2');                  
                }
                 
            });
            //全部移到左边
            $('#remove_all').bind('click', function() {
                if($("#bindEnterpriseName").val().replace(/\s+/g, "").length > 0){
                    //获取全部的选项,删除并追加给对方
                    $('#select2').find("option[class='showOption']").appendTo('#select1');
                } else {
                    $('#select2 option').appendTo('#select1');
                }
             
            });
            //双击选项
            $('#select1').bind('dblclick', function() { //绑定双击事件
                //获取全部的选项,删除并追加给对方
                $("option:selected", this).appendTo('#select2'); //追加给对方
            });
            //双击选项
            $('#select2').bind('dblclick', function() {
            }); 
                     
            $("#unBindEnterpriseName").keyup(function(){
              var options=$("#select1").find("option");
                var key=$(this).val();
                $.each(options, function(i, option){
                    if(option.text.indexOf(key)>-1){
                        $(option).attr("class", "showOption");
                    } else {
                        $(option).attr("class", "hideOption");
                    }
                })
            });
             
            $("#bindEnterpriseName").keyup(function(){
              var options=$("#select2").find("option");
                var key=$(this).val();
                $.each(options, function(i, option){
                    if(option.text.indexOf(key)>-1){
                        $(option).attr("class", "showOption");
                    } else {
                        $(option).attr("class", "hideOption");
                    }
                })
            });
             
             
    });
    </script>
  </head>
   
  <body>
    <table style="width:800px;height:100%" border="0" cellpadding="5">
        <tbody>
            <tr>
                <td>
                    待分配企业:<input id="unBindEnterpriseName" type="text">
                             &nbsp;
                </td>
                <td></td>
                <td>
                    已分配企业:<input id="bindEnterpriseName" type="text">
                             &nbsp;
                             
                </td>
            </tr>
            <tr>
                <td>
                    <select id="select1" style="width: 371px; height: 280px;" multiple="multiple">
                        <option value="111111">1111</option>
                        <option value="123">2</option>
                        <option value="11ws1231111">222112</option>
                        <option value="1111aa23sa111">11211</option>
                        <option value="1111x1qe123d1">131231</option>
                        <option value="11111123d1">131xxx231</option>
                        <option value="xxx">1312sdfqw31</option>
                    </select>
                </td>
                <td align="center" width="5%">
                    <button type="button" id="add" style="width: 30px;">&gt;</button> <br><br>
                    <button type="button" id="add_all" style="width: 30px;">&gt;&gt;</button> <br><br> 
                    <button type="button" id="remove" style="width: 30px;">&lt;</button> <br><br>
                    <button type="button" id="remove_all" style="width: 30px;">&lt;&lt;</button> 
                </td>
                <td>
                    <select  style="width: 344px; height: 280px;" multiple="multiple" id="select2"></select>
                </td>
            </tr>
        </tbody>
    </table>
  </body>
  </html>

screenshot

展开
收起
a123456678 2016-07-11 16:54:10 2302 0
1 条回答
写回答
取消 提交回答
  • 或》时:clone()一下左边的option,然后append()到右边去,然后remove()左边的option;

    <或《时相同原理。

    2019-07-17 19:54:23
    赞同 展开评论 打赏
问答分类:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
Froma single droplet toafull b 立即下载
Semantic Search--Fast Results from Large,Foreign Language Corpora 立即下载
Multi-label Graaph Analysis an 立即下载