亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

JQuery下拉框應(yīng)用示例介紹

 更新時(shí)間:2014年04月23日 16:00:04   作者:  
本文主要介紹了JQuery實(shí)現(xiàn)兩個(gè)下拉框數(shù)據(jù)移動(dòng),追加,需要的朋友可以參考下
實(shí)現(xiàn)兩個(gè)下拉框數(shù)據(jù)移動(dòng),追加
復(fù)制代碼 代碼如下:

$('#add').click(function(){
var $options = $('#select1 option:selected'); //獲取選中的項(xiàng)
var $remove = $options.remove();
$remove.appenTo('#select2');
});

簡(jiǎn)化如下
復(fù)制代碼 代碼如下:

$('#add').click(function(){
var $options = $('#select1 option:selected'); //獲取選中的項(xiàng)
$remove.appenTo('#select2');
});

相關(guān)文章

最新評(píng)論