微信小程序开发问题总结

单选选中的颜色想自定义:

将选中后的背景色,重写并加上import


		杀生丸
		夏目贵志
		奴良陆生
	

//js 
 radioChange:function(e){
    console.log('当前value值为:',e.detail.value)
  },

css 

radio .wx-radio-input.wx-radio-input-checked{

  border:none;
  
  background: blue !important;
  
  }

 

你可能感兴趣的:(微信小程序)