JQuery下拉框应用示例介绍
程序员文章站
2023-11-23 18:50:28
实现两个下拉框数据移动,追加
. 代码如下:
$('#add').click(function(){
var $options = $('#sel...
实现两个下拉框数据移动,追加
. 代码如下:
$('#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');
});