Home  >  Article  >  WeChat Applet  >  Detailed explanation of the example of switching the selected style of Radio in the WeChat applet

Detailed explanation of the example of switching the selected style of Radio in the WeChat applet

黄舟
黄舟Original
2018-05-29 16:43:255028browse

This article mainly introduces the relevant information on the detailed explanation of the WeChat mini program Radio selection style switching. Friends in need can refer to the following

Detailed explanation of the WeChat mini program Radio selection style switching

This article mainly explains how to switch styles based on Radio selection in the WeChat applet. The effect is as follows:

#The principle is mainly to determine which radio-group is selected and add an "active" style to it.

The code is as follows:

 
 
  
   
    
     
    
    
     
    
    
     
    
   
  

As you can see in the index.wxml code, first hide the original style of the radio, and use label click to trigger the radioCheckedChange event listening function .

/**index.wxss**/ 
radio-group{ 
 width: 100%; 
} 
.flex_box{ 
 display: flex; 
 width: 100%; 
 background: #eee; 
} 
.flex_item{ 
 flex: 1; 
 text-align: center; 
} 
.flex_item label{ 
 padding: 10px 0; 
 display: inline-block; 
 width: 50%; 
} 
.flex_item label.active{ 
 color: red; 
 border-bottom: 2px solid red; 
  
}

In index.wxss, use flex layout to divide them equally and define the "active" style.

//index.js 
//获取应用实例 
var app = getApp() 
Page({ 
 data: { 
  radioCheckVal:0 
 }, 
 radioCheckedChange:function(e){ 
  this.setData({ 
   radioCheckVal:e.detail.value 
  }) 
 } 
})

In index.js, define a variable radioCheckVal that receives the selected radio value. When the listening event is triggered, record the selected radio value.

The most important point is this sentence:

Use a simple judgment expression to get the selected radio in the data, judge when == the current radio value, add label "active" selects the style.

The above is the detailed content of Detailed explanation of the example of switching the selected style of Radio in the WeChat applet. For more information, please follow other related articles on the PHP Chinese website!

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