用jquery實現可以左右選擇的菜單效果


<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>可以左右選擇的菜單效果</title>
<script language="javascript" type="text/javascript" src="../jquery/jquery.js"></script>
<script language="javascript" type="text/javascript">
//使用jquery加載事件
$(document).ready(function (){
//向右側添加一個選項事件
    $("#right-one").click(function (){     
    //選中目標元素追加到右邊  
    $("#second").append($("#first option:selected"));  
  });
$("#right-all").click(function (){     
    //全部元素追加到右邊  
    $("#second").append($("#first option")); 
  });
$("#left-one").click(function (){     
    //選中目標元素追加到左邊  
    $("#first").append($("#second option:selected")); 
  });
$("#left-all").click(function (){     
    //全部元素追加到左邊  
    $("#first").append($("#second option")); 
  
  });
  });
</script>
</head>


<body>
<table width="200" border="0">
  <tr bgcolor="#00FFFF">
    <td><select multiple="multiple"  id="first" class="left" style="width:100px; height:200px">
<option>蘋果</option>
<option>香蕉</option>
<option>草莓</option>
<option>梨兒</option>
   </select>
    </td>
<td align="center">
<input id="right-one" type="button" value="->" onclick="mov('left','right')"><br><br>
    <input id="right-all" type="button" value=">>" onclick="mov('left','right')"><br><br>
<input id="left-one" type="button" value="<-" onclick="mov('right','left')"><br><br>
    <input id="left-all" type="button" value="<<" onclick="mov('right','left')"><br><br>
     </td>   
    <td ><select multiple="multiple" id="second" class="right" style="width:100px; height:200px"></select></td>
  </tr>
</table>


</body>
</html>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章