溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

jquery 兩個(gè)select控件左右移動(dòng)并上下移動(dòng)

發(fā)布時(shí)間:2020-06-28 08:16:55 來(lái)源:網(wǎng)絡(luò) 閱讀:2753 作者:wanfeng1979 欄目:web開發(fā)
<script type="text/javascript" src="jquery-1.3.2.min.js" />
<table boder='1'>
  <tr>
    <th>待選字段</th>
    <td></td>
    <th>報(bào)表導(dǎo)出字段</th>
  </tr>
  <tr>
    <td><select name="selectOne" size="5" multiple style="height:300px!important; width:150px;">
        <?php foreach($arrFieldName as $key=>$val){?>
        <option val="<?php echo $key;?>"><?php echo $val;?></option>
        <?php }?>
      </select></td>
    <td style="width:100px; text-align:center;"><input type="button" id="buttonToRight"  value="&raquo;"  style="background:none; width:50px;" />
      <br/>
      <br/>
      <input type="button" value="&laquo;" id="buttonToLeft"  style="background:none; width:50px;" />
      <br/>
      <br/>
      <input type="button" value="&uarr;" id="buttonToUp" style="background:none; width:50px;" />
      <br/>
      <br/>    
      <input type="button" value="&darr;"  id="buttonToDown" style="background:none; width:50px;" />
      </td>
    <td><select name="selectTwo" size="5" multiple style="height:300px!important; width:150px;">          
      </select></td>
  </tr>
  <tr>
    <td ></td>
    <td><a class="button"><span class="icon icon-output">確認(rèn)導(dǎo)出</span></a></td>
    <td></td>
  </tr>
</table>
<script type="text/javascript">
$(function(){
    $('#buttonToRight').click(function(){
        if($("select[name=selectOne] option:selected").length>0){             
            $("select[name=selectOne] option:selected").each(function(i){                           
                 $("select[name=selectTwo]").append("<option value='"+$(this).val()+"'>"+$(this).text()+"</option"); 
//從左移到右邊
                 $(this).remove();  //左邊的刪除
            });
        }
    });
       
    $('#buttonToLeft').click(function(){
         if($("select[name=selectTwo] option:selected").length>0){             
             $("select[name=selectTwo] option:selected").each(function(i){
                  $("select[name=selectOne]").append("<option value='"+$(this).val()+"'>"+$(this).text()+"</option");
                  $(this).remove();
             });
         }
        });
    $('#buttonToUp').click(function(){       
        if($("select[name=selectTwo] option:selected").length>0){             
            $("select[name=selectTwo] option:selected").each(function(i){
                $(this).prev().before($(this));  //上移
            });
         }
    });
    $('#buttonToDown').click(function(){     
        if($("select[name=selectTwo] option:selected").length>0){             
            $("select[name=selectTwo] option:selected").each(function(i){
                $(this).next().after($(this)); 
                $(this).insertAfter($(this).next());  //下移
            });
         }
    });

});
</script>
 

 獲取select 選中的 text :

   $("#ddlRegType").find("option:selected").text();

 

 獲取select選中的 value:

   $("#ddlRegType ").val();

 

獲取select選中的索引:

     $("#ddlRegType ").get(0).selectedIndex;

 

 設(shè)置select 選中的索引:

     $("#ddlRegType ").get(0).selectedIndex=index;//index為索引值


 設(shè)置select 選中的value:

  $("#ddlRegType ").get(0).value = value;

 

//select option的數(shù)量

("#ddlRegType option").length;

 

$("#select_id").append("<option value='Value'>Text</option>");  //添加一項(xiàng)option

 $("#select_id").prepend("<option value='0'>請(qǐng)選擇</option>"); //在前面插入一項(xiàng)option

 $("#select_id option:last").remove(); //刪除索引值最大的Option

 $("#select_id option[index='0']").remove();//刪除索引值為0的Option

 $("#select_id option[value='3']").remove(); //刪除值為3的Option

 $("#select_id option[text='4']").remove(); //刪除TEXT值為4的Option

 

清空 Select:

$("#ddlRegType ").empty();

jquery 兩個(gè)select控件左右移動(dòng)并上下移動(dòng)
向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI