【jQuery】点击“选中添加到右边”讲选中项移动到右侧下拉框

点击“选中添加到右边”讲选中项移动到右侧下拉框

在这里插入图片描述
HTML代码

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="jquery-3.3.1.min.js"></script>
    <script src="2.js"></script>
    <link rel="stylesheet" href="2.css">
</head>
<body>
    <div class="div1">
        <select id="select1" class="select" multiple="multiple">
            <option>选项1</option>
            <option>选项2</option>
            <option>选项3</option>
            <option>选项4</option>
            <option>选项5</option>
            <option>选项6</option>
            <option>选项7</option>
        </select>
        <div>
            <button id="addRight">选中添加到右边>></button><br>
            <button id="addAllRight">全部添加到右边>></button>
        </div>
    </div>
    <div>
        <select id="select2" class="select" multiple="multiple">
        </select>
        <div>
            <button id="addLeft">《《选中删除到左边</button><br>
            <button id="addAllLeft">《《全部删除到左边</button>
        </div>
    </div>
</body>
</html>

css代码

.select{
    width: 130px;
    height: 200px;
    display: inline-block;
}
.div1{
    float: left;
}

js代码

$(function () {
    $("#addRight").click(function () {
        $("#select1 option:selected").appendTo("#select2")
    })

    $("#addAllRight").click(function () {
        $("#select1 option").appendTo("#select2")
    })

    $("#addLeft").click(function () {
        $("#select2 option:selected").appendTo("#select1")
    })

    $("#addAllLeft").click(function () {
        $("#select2 option").appendTo("#select1")
    })
})
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值