update select api

This commit is contained in:
afc163 2015-11-05 18:18:21 +08:00
parent bd04fbf354
commit 7a5bea24d2

View File

@ -29,9 +29,9 @@
| multiple | 支持多选 | | false |
| filterOption | 是否根据输入项进行筛选 | | true |
| tags | 可以把随意输入的条目作为tag输入项不需要与下拉选项匹配 | |false |
| onSelect | 被选中时调用参数为选中的option value值 | function | 无 |
| onDeselect | 取消选中时调用参数为选中的option value值仅在multiple或tags模式下生效 | function | 无 |
| onChange | 选中option或input的value变化(combobox模式下)时,调用此函数 | function | 无 |
| onSelect | 被选中时调用参数为选中的option value值 | function(value, option) | 无 |
| onDeselect | 取消选中时调用参数为选中的option value值仅在multiple或tags模式下生效 | function(value, option) | 无 |
| onChange | 选中option或input的value变化(combobox模式下)时,调用此函数 | function(value, label) | 无 |
| allowClear | 显示清除按钮 | | false |
| placeholder | 选择框默认文字 | string | 无 |
| searchPlaceholder | 搜索框默认文字 | string | 无 |