赞
踩
传参类型:function(value:string, option:Option/Array)
onChange={(e)=>{ ... } }
传参类型为:function(string|number|LabeledValue, option:Option)
```
onSelect={(e)=>this.select(e)}//调用方法
```
传参类型:function(value:string)
onSearch={(value)=>this.search(value)}
传参类型为:function(value:string)
```
onInputKeyDown={(e) => {
//回车键
if (e.keyCode === 13) {
this.handleChange();//调用方法
}
}}
```
属性名 | 说明 |
---|---|
placeholder | 提示用户的输入信息 |
notFoundContent | 下拉列表为空时显示的内容 |
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。