WeChat applet uses radio to display single option function [source code attached]

不言
Release: 2018-06-22 17:17:56
Original
2724 people have browsed it

This article mainly introduces the use of radio display single option function in WeChat applet, involving operation techniques related to radio component event response, and comes with source code for readers to download and refer to. Friends in need can refer to this article

The example describes how the WeChat applet uses radio to display a single option function. Share it with everyone for your reference, the details are as follows:

1. Effect display

##2. Key code

① index.wxml


 radio1
 radio2
 radio3

提示:{{text}}
Copy after login

② index.js

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

3. Source code

For more detailed instructions on the radio component, please refer to the official website:

https://mp.weixin.qq.com/debug/wxadoc/dev/component/radio.html

The above is the entire content of this article, I hope it will be helpful to everyone’s study , please pay attention to the PHP Chinese website for more related content!

Related recommendations:

How to obtain mobile phone network status through WeChat applet [source code attached]

WeChat applet Make your own widgets

The above is the detailed content of WeChat applet uses radio to display single option function [source code attached]. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!