更改radio选中后的样式,并设置radio的点击事件

思路:设置input隐藏,然后使用input后的span,设置样式,代替原始的input选中后效果,点击label中文本或者radio即可选中

html:                 

  <div class="radio-text">

                                    <label for="jD">    

                                        <input type="radio" name="wuliu" value="1" id="jD" class="input_radio" checked>

                                        <span class="span_radio"></span>                              

                                        集约京东

                                     </label>

                                </div>

css:    

 

.input_radio {

                display: none;

            }

 .span_radio {

                width: 14px;

                height: 14px;

                display: inline-block;

                background-color: #fff;

                margin-right: 4px;

                margin-top: 4px;

                border-radius: 100%;

                position: relative;

                border: 1px solid #D575ED;

              // box-shadow: 0px 0px 2px 1px lightgrey;

            }

            

            .input_radio:checked+.span_radio::after {

                width: 8px;

                height: 8px;

                content: '';

                background-color: #D575ED;

                /* display: inline-block; */

                border-radius: 100%;

                display: block;

                position: absolute;

                text-align: center;

                top: 2px;

                left: 2px;

                /* //使用百分比,选中后不能都在中间显示 */

            }

           .s_radio:checked+.radio_checked:hover::after  {
                background-color: palevioletred;
            }

 

js:  radio的点击事件

   $('input:radio[name="wuliu"]').click(function() {

     let checkValue = $('input:radio[name="wuliu"]:checked').val();

            });

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值
>