codecamp

switch

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

开关选择器。


属性说明

属性名类型默认值说明最低版本
checkedbooleanfalse是否选中1.0.0
disabledbooleanfalse是否禁用1.0.0
typestringswitch样式,有效值:switch,checkbox1.0.0
bindchangeeventhandlechecked 改变时触发该事件,event.detail={value:checked}1.0.0
colorstring#F85959switch 的颜色,同 css 的 color1.0.0


效果示例


代码示例

<view class="container">
  <view class="page-body">
    <view class="page-section page-section-gap">
      <view class="page-section-title">默认样式</view>
      <view class="body-view">
        <switch checked bindchange="switch1Change" />
        <switch bindchange="switch2Change" />
      </view>
    </view>
    <view class="page-section">
      <view class="page-section-title">推荐展示样式</view>
      <view class="page-cells page-cells_after-title">
        <view class="page-cell page-cell_switch">
          <view class="page-cell__bd">开启中</view>
          <view class="page-cell__ft">
            <switch checked color="#ff6633" />
          </view>
        </view>
        <view class="page-cell page-cell_switch">
          <view class="page-cell__bd">关闭</view>
          <view class="page-cell__ft">
            <switch type="checkbox" />
          </view>
        </view>
      </view>
    </view>
  </view>
</view>
Page({
  switch1Change: function(e) {
    console.log("switch1 发生 change 事件,携带值为", e.detail.value);
  },
  switch2Change: function(e) {
    console.log("switch2 发生 change 事件,携带值为", e.detail.value);
  }
});
slider
textarea
温馨提示
下载编程狮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; }