codecamp

radio

基础库 1.0.0 开始支持本组件。

单选项目。


属性说明

属性名类型默认值说明最低版本
valuestring标识。当该 选中时, 的 change 事件会携带的 value1.0.0
checkedbooleanfalse当前是否选中1.0.0
disabledbooleanfalse是否禁用1.0.0
colorsString#F85959radio 的颜色,同 css 的 color1.0.0


效果示例


代码示例

<view class="container">
  <view class="page-body">
    <view class="page-section page-section-gap">
      <view class="page-section-title">默认样式</view>
      <label class="radio"> <radio value="r1" checked="true" />选中 </label>
      <label class="radio"> <radio value="r2" />未选中 </label>
    </view>

    <view class="page-section">
      <view class="page-section-title">推荐展示样式</view>
      <view class="page-cells page-cells_after-title">
        <radio-group bindchange="radioChange">
          <label
            class="page-cell page-check__label"
            :for="{{items}}"
            :key="{{item.value}}"
          >
            <view class="page-cell__hd">
              <radio value="{{item.value}}" checked="{{ item.checked }}" />
            </view>
            <view class="page-cell__bd">{{item.name}}</view>
          </label>
        </radio-group>
      </view>
    </view>
  </view>
</view>
Page({
  data: {
    items: [
      { value: "xigua", name: "西瓜视频" },
      { value: "toutiao", name: "今日头条", checked: "true" },
      { value: "huoshan", name: "火山小视频" },
      { value: "douyin", name: "抖音" },
      { value: "duanzi", name: "内涵段子" },
      { value: "flipgaram", name: "Flipagram" }
    ]
  },
  radioChange: function(e) {
    console.log("Radio 发生 change 事件,value 值为:", e.detail.value);

    var items = this.data.items;
    for (var i = 0, len = items.length; i < len; ++i) {
      items[i].checked = items[i].value == e.detail.value;
    }

    this.setData({
      items: items
    });
  }
});
picker-view-column
radio-group
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

字节跳动小程序 介绍

字节跳动小程序 开发

字节跳动小程序开发框架

字节跳动小程序开发框架基础说明

字节跳动小程序开发框架基础功能

字节跳动小程序开发框架逻辑层

无标题文章

无标题目录

API

无标题文章

无标题文章

无标题文章

无标题文章

无标题文章

无标题目录

无标题目录

无标题文章

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }