# select - [权限列表](#zh-cn_topic_0000001173164719_section11257113618419) - [子组件](#zh-cn_topic_0000001173164719_section9288143101012) - [属性](#zh-cn_topic_0000001173164719_section2907183951110) - [样式](#zh-cn_topic_0000001173164719_section648514244510) - [事件](#zh-cn_topic_0000001173164719_section3892191911214) - [方法](#zh-cn_topic_0000001173164719_section2279124532420) - [示例](#zh-cn_topic_0000001173164719_section18261242145416) 下拉选择按钮,可让用户在多个选项之间选择。 ## 权限列表 无 ## 子组件 支持<[option](js-components-basic-option.md#ZH-CN_TOPIC_0000001209252169)\>。 ## 属性 支持[通用属性](js-components-common-attributes.md#ZH-CN_TOPIC_0000001163812208)。 ## 样式 除支持[通用样式](js-components-common-styles.md#ZH-CN_TOPIC_0000001163932190)外,还支持如下样式:

名称

类型

默认值

必填

描述

font-family

string

sans-serif

字体列表,用逗号分隔,每个字体用字体名或者字体族名设置。列表中第一个系统中存在的或者通过自定义字体指定的字体,会被选中作为文本的字体。

## 事件 除支持[通用事件](js-components-common-events.md#ZH-CN_TOPIC_0000001209412119)外,还支持如下事件:

名称

参数

描述

change

{newValue: newValue}

下拉选择新值后触发该事件,newValue的值为子组件option的value属性值。

>![](../../public_sys-resources/icon-note.gif) **说明:** >- select组件不支持click事件。 ## 方法 支持[通用方法](js-components-common-methods.md#ZH-CN_TOPIC_0000001209252157)。 ## 示例 ```
``` ``` /* xxx.css */ .container { display: flex; justify-content: center; align-items: center; } ``` ![](figures/zh-cn_image_0000001152588538.png)