时间:2021-05-18
前端使用input 来写radio,小程序使用radio标签 也可以使用<radio />单标签
1.自定义radio样式、
wx默认的是真的丑
radio .wx-radio-input{ width: 32rpx; height: 32rpx; border-radius: 0}radio .wx-radio-input.wx-radio-input-checked{ width: 32rpx; height: 32rpx; background:white!important;}radio .wx-radio-input.wx-radio-input-checked::before{ width: 32rpx; height: 32rpx; line-height: 32rpx; text-align: center; font-size:36rpx; color:black; background: white; transform:translate(-50%, -50%) scale(1); -webkit-transform:translate(-50%, -50%) scale(1);}2.单选打勾再选打勾取消效果
wxml:
<radio checked='{{check}}' id="radios" bindtap='radiocon'></radio><label for="radios">匿名</label>wx.js
//这条代码在data里写 check:falseradiocon:function(e){ this.setData({ check: !this.data.check }) console.log("用户打勾的是 ",this.data.check) },这样 就完成了单击打勾再击取消。
以上。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
微信小程序单选框radio相关文章:微信小程序Button微信小程序radio微信小程序slider微信小程序switch微信小程序textarea微信小程序p
昨天为大家分享了一款很炫的checkbox复选框和radio单选框,今天再给大家带来一款简单实用的checkbox复选框和radio单选框。界面清淅、舒服。
本文实例讲述了js实现表单Radio切换效果的方法。分享给大家供大家参考。具体如下:这里基于js实现表单中的Radio单选框切换效果,当选中某个单选框的时候,所
本文主要介绍了AmazeUI单选框和多选框的实现示例,分享给大家,也给自己留个笔记,具体如下:单选框和多选框复选框没有选中已选中禁用/未选中禁用/已选中单选框未
获取单选框的值有三种方式: 1、$('input:radio:checked').val(); 2、$("input[type='radio']:che