当前位置: 首页 > 工具软件 > weui.js > 使用案例 >

tab weui 页面切换_tab · WeUI.JS 中文文档 · 看云

唐骏祥
2023-12-01

## tab(selector, [options])

tab tab导航栏

**Kind**: global function

| Param | Type | Default | Description |

| --- | --- | --- | --- |

| selector | string | | tab的selector |

| [options] | object | | 配置项 |

| [options.defaultIndex] | number | 0 | 初始展示的index |

| [options.onChange] | function | | 点击tab时,返回对应的index |

**Example**

#### html

```html

反馈
表单
上传
其它
反馈页
表单页
上传页
其它页

```

#### js

```javascript

weui.tab('#tab',{

defaultIndex: 0,

onChange: function(index){

console.log(index);

}

});

```

 类似资料: