提交 8ab58d6f 编写于 作者: A afc163

update rc-select and demos

上级 e52164f3
......@@ -2,7 +2,7 @@
- order: 4
类似 Google 搜索的输入框自动提示功能。
类似账号注册表单输入框的自动完成功能。
---
......@@ -18,6 +18,12 @@ var Test = React.createClass({
};
},
handleChange(value) {
if (!value) {
this.setState({
options: []
});
return;
}
var options = ['gmail.com', '163.com', 'qq.com'].map(function(domain) {
var email = value + '@' + domain;
return <Option value={email}>{email}</Option>;
......
......@@ -45,6 +45,10 @@
}
}
&-combobox &-arrow {
display: none;
}
&-selection {
outline: none;
user-select: none;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册