中文字幕在线观看,亚洲а∨天堂久久精品9966,亚洲成a人片在线观看你懂的,亚洲av成人片无码网站,亚洲国产精品无码久久久五月天

jQuery 下拉選擇框 左右移動(dòng) 左右添加

2018-07-20    來(lái)源:open-open

容器云強(qiáng)勢(shì)上線!快速搭建集群,上萬(wàn)Linux鏡像隨意使用
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 
  <title></title>
  <style type="text/css">
/*<![CDATA[*/
  * { 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><!--   引入jQuery -->
 
  <script src="../scripts/jquery-1.3.1.js" type="text/javascript">
</script>
  <script type="text/javascript">
//<![CDATA[
  $(function(){
        //移到右邊
        $('#add').click(function() {
        //獲取選中的選項(xiàng),刪除并追加給對(duì)方
                $('#select1 option:selected').appendTo('#select2');
        });
        //移到左邊
        $('#remove').click(function() {
                $('#select2 option:selected').appendTo('#select1');
        });
        //全部移到右邊
        $('#add_all').click(function() {
                //獲取全部的選項(xiàng),刪除并追加給對(duì)方
                $('#select1 option').appendTo('#select2');
        });
        //全部移到左邊
        $('#remove_all').click(function() {
                $('#select2 option').appendTo('#select1');
        });
        //雙擊選項(xiàng)
        $('#select1').dblclick(function(){ //綁定雙擊事件
                //獲取全部的選項(xiàng),刪除并追加給對(duì)方
                $("option:selected",this).appendTo('#select2'); //追加給對(duì)方
        });
        //雙擊選項(xiàng)
        $('#select2').dblclick(function(){
           $("option:selected",this).appendTo('#select1');
        });
  });
  //]]>
  </script>
</head>
 
<body>
  <div class="centent">
    <select multiple="multiple" id="select1" style="width:100px;height:160px;">
      <option value="1">
        選項(xiàng)1
      </option>
 
      <option value="2">
        選項(xiàng)2
      </option>
 
      <option value="3">
        選項(xiàng)3
      </option>
 
      <option value="4">
        選項(xiàng)4
      </option>
 
      <option value="5">
        選項(xiàng)5
      </option>
 
      <option value="6">
        選項(xiàng)6
      </option>
 
      <option value="7">
        選項(xiàng)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">
        選項(xiàng)8
      </option>
    </select>
 
    <div>
      <span id="remove">&lt;&lt;選中刪除到左邊</span> <span id="remove_all">&lt;&lt;全部刪除到左邊</span>
    </div>
  </div>
</body>
</html>

標(biāo)簽: isp

版權(quán)申明:本站文章部分自網(wǎng)絡(luò),如有侵權(quán),請(qǐng)聯(lián)系:west999com@outlook.com
特別注意:本站所有轉(zhuǎn)載文章言論不代表本站觀點(diǎn)!
本站所提供的圖片等素材,版權(quán)歸原作者所有,如需使用,請(qǐng)與原作者聯(lián)系。

上一篇:約瑟夫環(huán)算法Java實(shí)現(xiàn)代碼

下一篇:Android 獲取下載文件的真實(shí)名字