js如何互換兩個select下拉選單的option項

螞蟻小編發表於2017-03-16

有時候需要互換兩個select下拉選單中的option選項,下面就通過程式碼例項介紹一下如何實現此功能:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
select{width:80px;}
</style>
<script type="text/javascript">
function allsel(from,to){
  while(from.selectedIndex!=-1){
   var indx=from.selectedIndex;
   var t=from.options[indx].text;
   to.options.add(new Option(t));
   from.remove(indx);
  }
}
window.onload=function(){
  oleft=document.getElementById("left");
  oright=document.getElementById("right");
  oleft.onclick=function(){allsel(document.form1.sel_place2,document.form1.sel_place1);}
  oright.onclick=function(){allsel(document.form1.sel_place1,document.form1.sel_place2);}
}
</script>
</head>
<body>
<form name="form1" method="post" action="">
  <select name="sel_place1" size="6" multiple id="sel_place1">
    <option value="sel1">江蘇省</option>
    <option value="sel2">廣東省</option>
    <option value="sel3">河南省</option>
    <option value="sel4">吉林省</option>
    <option value="sel5">浙江省</option>
  </select>
  <input name="sure1" type="button" id="left" value="<<">
  <input name="sure2" type="button" id="right" value=">>">
  <select name="sel_place2" size="6" multiple id="sel_place2"></select>
</form>
</body>
</html>

以上程式碼實現了我們想要實現的效果,選中指定option,然後點選箭頭就可以進行相應的移動。

實現的原理非常的簡單,無非是對相應select選單項的新增或者刪除,這裡就不多介紹了,可以參閱相關閱讀。

相關閱讀:

1.js操作select下拉選單可以參閱javascript動態操作select下拉選單一章節。 

2.onclick事件可以參閱javascript click 事件一章節。

相關文章