實現兩個下拉框數據移動,追加
. 代碼如下:
$('#add').click(function(){
var $options = $('#select1 option:selected'); //獲取選中的項
var $remove = $options.remove();
$remove.appenTo('#select2');
});
簡化如下
. 代碼如下:
$('#add').click(function(){
var $options = $('#select1 option:selected'); //獲取選中的項
$remove.appenTo('#select2');
});