<style>
* {
margin: 0;
padding: 0;
}
div.centent {
float: left;
text-align: center;
margin: 10px;
}
span {
display: block;
margin: 2px 2px;
padding: 4px 10px;
background: #898989;
cursor: pointer;
font-size: 12px;
color: white;
}
</style>
<div class="centent">
<select multiple="multiple" id="select1" style="width:100px;height:160px;">
<option value="1">选项1</option>
<option value="2">选项2</option>
<option value="3">选项3</option>
<option value="4">选项4</option>
<option value="5">选项5</option>
<option value="6">选项6</option>
<option value="7">选项7</option>
</select>
<div>
<span id="add">选中添加到右边>></span>
<span id="add_all">全部添加到右边>></span>
</div>
</div>
<div class="centent">
<select multiple="multiple" id="select2" style="width: 100px;height:160px;">
<option value="8">选项8</option>
</select>
<div>
<span id="remove"><<选中删除到左边</span>
<span id="remove_all"><<全部删除到左边</span>
</div>
</div>
<script type="text/javascript" src="jquery-1.7.js"></script>
<script type="text/javascript">
jQuery.noConflict();
(function($) {
/*将选中的移动到右边*/
$('#add').click(function() {
var $options = $('#select1 option:selected');
$options.appendTo('#select2');
});
/*将全部的添加到右边*/
$('#add_all').click(function() {
var $options = $('#select1 option');
$options.appendTo('#select2');
});
/* $('#select1 option').dblclick(function(event) {
var $options = $('#select1 option:selected');
$options.appendTo('#select2');
});*/
/*方法二*/
$('#select1').dblclick(function(event) {
/*this代表当前点击的option*/
var $options = $('option:selected', this);
$options.appendTo('#select2');
});
})(jQuery);
</script>
左边部分添加到右边
最新推荐文章于 2018-11-06 18:04:33 发布