antd+react 中Select组件的常用事件及传参类型

1. onChange: 选中option发生变化时的回调。即改变选项时回调。

传参类型:function(value:string, option:Option/Array)
onChange={(e)=>{ ... } }

2. onSelect:选项被选中时调用。
传参类型为:function(string|number|LabeledValue, option:Option)


```
onSelect={(e)=>this.select(e)}//调用方法
```
3. onSearch:输入框值(文本框值)发生变化时调用。

传参类型:function(value:string)
onSearch={(value)=>this.search(value)}

4. onFocus:获得焦点时调用,不支持传参。
5. onBlur:失去焦点时调用。

传参类型为:function(value:string)

6.onInputKeyDown:按键时发生回调。
				```
				onInputKeyDown={(e) => {
				//回车键
                  if (e.keyCode === 13) {
                    this.handleChange();//调用方法
                  }
                }}
				```
7. 常用属性有(不断更新中):
属性名 说明
placeholder 提示用户的输入信息
notFoundContent 下拉列表为空时显示的内容

你可能感兴趣的:(ant,dedign组件库,React,前端,antd,select组件,react)