【CSS、JS】修改单选框样式,监听单选框

懒了懒了,废话不多说,直接上代码:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <script src="./js/jquery-2.1.1.min.js"></script>
    <style>
        .choise>input {
            /* 将比较丑的那个框去掉 */
            display: none;
        }

        .choise>label {
            position: relative;
            margin-right: 34px;
        }

        .choise>label::before {
            /* 添加未选择时的空心圆圈 */
            display: inline-block;
            content: "";
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 1px solid rgb(219, 219, 219);
            margin-right: 6px;
            vertical-align: bottom;
        }

        .choise>input:checked+label::before {
            background-color: rgb(239, 66, 56);
        }

        .choise>input:checked+label::after {
            display: inline-block;
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            position: absolute;
            left: 6px;
            bottom: 6px;
            background-color: white;
        }
    </style>
</head>

<body>
    <!-- 原始样式 -->
    <input type="radio" name="gender" value="male" checked>男
    <input type="radio" name="gender" value="female">女
    <!-- 修改过的样式 -->
    <div class="choise">
        <input type="radio" name="paixu" value="1" id="paixu1" checked>
        <label for="paixu1" style="cursor:pointer">按热门排序</label>
        <input type="radio" name="paixu" value="2" id="paixu2">
        <label for="paixu2" style="cursor:pointer">按时间排序</label>
        <input type="radio" name="paixu" value="3" id="paixu3">
        <label for="paixu3" style="cursor:pointer">按评价排序</label>
    </div>
    <button id="getValue">得到单选的value值</button>
</body>
<script>
    $(document).ready(function () {
        // 监听单选框
        $('.choise input[type=radio][name=paixu]').change(function () {
            if (this.value == '1') {
                alert("1----");
            } else if (this.value == '2') {
                alert("2----");
            } else if (this.value == '3') {
                alert("3----");
            }
        });
        $('#getValue').click(function () {
            var choiseValue = $('.choise input[type=radio][name=paixu]:checked').val();
            alert("choiseValue---" + choiseValue);
        })
    });
</script>

</html>

页面显示效果,如下图:

 

 

附:启蒙链接:https://www.cnblogs.com/zhangzhiyong/p/9581110.html

  • 2
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值