微信小程序使用radio显示单选项功能【附源码下载】

你长着一对翅膀。坚韧地飞吧,不要为风雨所折服;诚挚地飞吧,不要为香甜的蜜汁所陶醉。朝着明确的目标,飞向完美的人生。

本文实例讲述了微信小程序使用radio显示单选项功能。分享给大家供大家参考,具体如下:

1、效果展示

2、关键代码

① index.wxml

<radio-group bindchange="radiogroupBindchange">
 <radio value="radio1">radio1</radio>
 <radio value="radio2">radio2</radio>
 <radio value="radio3">radio3</radio>
</radio-group>
<view>提示:{{text}}</view>

② index.js

Page({
 data:{
  // text:"这是一个页面"
  text:''
 }, 
 radiogroupBindchange:function(e){
  console.log(e);
  this.setData({
   text:'您选择了'+e.detail.value
  })
 }
})

3、源代码点击此处本站下载

关于radio组件的更多详细说明还可参考官网:https://mp.weixin.qq.com/debug/wxadoc/dev/component/radio.html

希望本文所述对大家微信小程序开发有所帮助。

以上就是微信小程序使用radio显示单选项功能【附源码下载】。工作的质量,决定生活的质量,能力比金钱重要万倍。更多关于微信小程序使用radio显示单选项功能【附源码下载】请关注haodaima.com其它相关文章!