举报投诉联系我们 手机版 热门标签 编程学
您的位置:编程学 > 小程序单选框radio选中事件 微信小程序表单组件单选框 radio

小程序单选框radio选中事件 微信小程序表单组件单选框 radio

2023-05-18 11:18

小程序单选框radio选中事件 微信小程序表单组件单选框 radio

小程序单选框radio选中事件 微信小程序表单组件单选框 radio

小程序单选框radio选中事件

微信小程序单选框radio

radio-group

单项选择器,内部由多个<radio/>组成。

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

radio


​ 单选项目

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

<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>
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

阅读全文
以上是编程学为你收集整理的小程序单选框radio选中事件 微信小程序表单组件单选框 radio全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 编程学 bianchengxue.com 版权所有 联系我们
桂ICP备19012293号-7 返回底部