欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

小程序中如何获取radio选中的value

程序员文章站 2022-04-05 15:27:10
...

绑定方法: 

<radio-group bindchange="swiperChange">
</radio-group>

前端设置value值 

<radio checked="true" value="1" name="A"  />A</radio>
<radio checked="false" value="2" name="B"  />B</radio>

后端获取value值

radioChange:function(e){
   console.log(e.detail.value);
},