• QQ
  • nahooten@sina.com
  • 常州市九洲新世界花苑15-2

微信开发

常州信小程序复选框实现 多选一功能

原创内容,转载请注明原文网址:http://homeqin.cn/a/wenzhangboke/jishutiandi/weixinkaifa/2019/0211/389.html

常州信小程序复选框实现 多选一功能


功能实现界面

 

复制代码
data: {
    checkboxItems: [
      { name: '全天(1-8节)', value: 'allday' },
      { name: '上午(1-4节)', value: 'am' },
      { name: '下午(5-8节)', value: 'pm' },
      { name: '晚上(晚自习)', value: 'night' },
    ]
  }
复制代码

 

 

想要实现的功能

 

四个复选框中只能选一个,且选中另一个会取消常州游戏开发培训其余选中,且能保存选择的value值

JS代码实现

复制代码
checkboxChange: function (e) {
    var that = this;
    let checkboxValues=null;
    let checkboxItems = this.data.checkboxItems, values = e.detail.value
    for (var i = 0, lenI = checkboxItems.length; i < lenI; ++i) {
      if(checkboxItems[i].value==values[values.length-1]){
        checkboxItems[i].checked=true;
        checkboxValues = checkboxItems[i].value;
      }
      else{
        checkboxItems[i].checked = false;
      }
    }
    console.log(checkboxValues)
    that.setData({ checkboxItems, checkboxValues })
  }
复制代码

 

 

手机App外包前端代码

 

复制代码
<view class="weui-cells weui-cells_after-title">
      <checkbox-group class="weui-flex" bindchange="checkboxChange">
        <label class="weui-cell weui-check__label weui-flex__item" wx:for="{{checkboxItems}}" wx:key="value">
          <checkbox class="weui-check" value="{{item.value}}" checked="{{item.checked}}" />
          <view class="weui-cell__hd weui-check__hd_in-checkbox">
            <icon class="weui-icon-checkbox_circle" type="circle" size="23" wx:if="{{!item.checked}}"></icon>
            <icon class="weui-icon-checkbox_success" type="success" size="23" wx:if="{{item.checked}}"></icon>
          </view>
          <view class="weui-cell__bd">{{item.name}}</view>
        </label>
      </checkbox-group>
    </view>
复制代码

对应的CSS样式是


上篇:上一篇:常州微信小程序开发-锚点定位
下篇:下一篇:JS数组去重算法实现