参照《锋利的jQuery》这本书的例子敲的代码,在项目中的应用是根据这例子来改造的,在此作一下笔记,jQuery真他妈强大!
<script type="text/javascript">
$(document).ready(function(){
$('#add').click(function(){
var $options = $('#select1 option:selected');//获取当前选中的项
var $remove = $options.remove();//删除下拉列表中选中的项
$remove.appendTo('#select2');//追加给对方
});
$('#remove').click(function(){
var $removeOptions = $('#select2 option:selected');
$removeOptions.appendTo('#select1');//删除和追加可以用appendTo()直接完成
});
$('#addAll').click(function(){
var $options = $('#select1 option');
$options.appendTo('#select2');
});
$('#removeAll').click(function(){
var $options = $('#select2 option');
$options.appendTo('#select1');
});
//双击事件
$('#select1').dblclick(function(){
//var $options = $('#select1 option:selected');
var $options = $('option:selected', this);//注意此处“option”与“:”之间的空格,有空格是不可以的
$options.appendTo('#select2');
});
$('#select2').dblclick(function(){
$('#select2 option:selected').appendTo('#select1');
});
});
</script>