微信小程序单项选择框radio-group用法

wxml
<radio-group class="radio-group" bindchange="radioChange">
<label class="radio" >
<radio value="" checked=""/>
label>
<label class="radio" >
<radio value="" checked=""/>
label>
radio-group>

wxss:

radio-group{
display: flex;
align-items: center;
}
radio-group .radio{
margin-left: 20 rpx;
}
radio-group radio{
margin-left: 10 rpx;
}

图片:


微信小程序单选框radio

radio-group

单项选择器,内部由多个组成。

属性名 类型 默认值 说明
bindchange EventHandle   中的选中项发生变化时触发change事件,event.detail = {value: 选中项radio的value}

radio


​ 单选项目

属性名 类型 默认值 说明
value String   标识。当该选中时, 的change 事件会携带的value
checked Boolean false 当前是否选中
disabled Boolean false 是否禁用
color Color   radio的颜色,同css的color

示例

wxml:

<radio-group class="radio-group" bindchange="radioChange"> <label class="radio" wx:for="{{items}}"> <radio value="{{item.name}}" checked="{{item.checked}}"/>{{item.value}} label>radio-group>


js:

Page({ 
  data: {
    items: [
      {name: 'USA', value: '美国'},
      {name: 'CHN', value: '中国', checked: 'true'},
      {name: 'BRA', value: '巴西'},
      {name: 'JPN', value: '日本'},
      {name: 'ENG', value: '英国'},
      {name: 'TUR', value: '法国'},
    ]
  },
  radioChange: function(e) {
    console.log('radio发生change事件,携带value值为:', e.detail.value)
  }
})

你可能感兴趣的:(小程序,前端,radio,单选框)