时间:2021-07-01 10:21:17 帮助过:2人阅读
$('#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');
});