当前位置: 编程技术>WEB前端
JQuery下拉框应用示例介绍
来源: 互联网 发布时间:2014-08-25
本文导语: 实现两个下拉框数据移动,追加 代码如下: $('#add').click(function(){ var $options = $('#select1 option:selected'); //获取选中的项 var $remove = $options.remove(); $remove.appenTo('#select2'); }); 简化如下 代码如下: $('#add').click(function(){ var $options = $('#se...
实现两个下拉框数据移动,追加
$('#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');
});
代码如下:
$('#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');
});