wx.setBackgroundTextStyle(Object object)

基础库 2.1.0 开始支持,低版本需做兼容处理

动态设置下拉背景字体、loading 图的样式

参数

Object object

属性类型默认值必填说明
textStylestring下拉背景字体、loading 图的样式。
successfunction接口调用成功的回调函数
failfunction接口调用失败的回调函数
completefunction接口调用结束的回调函数(调用成功、失败都会执行)

object.textStyle 的合法值

说明最低版本
darkdark 样式
lightlight 样式

示例代码

  1. wx.setBackgroundTextStyle({
  2. textStyle: 'dark' // 下拉背景字体、loading 图的样式为dark
  3. })