ant-design/components/input/demo/presuffix.md

69 lines
1.2 KiB
Markdown
Raw Normal View History

---
order: 8
title:
zh-CN: 前缀和后缀
en-US: prefix and suffix
---
## zh-CN
在输入框上添加前缀或后缀图标。
## en-US
Add prefix or suffix icons inside input.
2017-02-13 10:55:53 +08:00
````jsx
import { Input, Icon } from 'antd';
class App extends React.Component {
constructor(props) {
super(props);
this.state = {
userName: '',
};
}
2018-06-27 15:55:04 +08:00
emitEmpty = () => {
this.userNameInput.focus();
this.setState({ userName: '' });
}
2018-06-27 15:55:04 +08:00
onChangeUserName = (e) => {
this.setState({ userName: e.target.value });
}
2018-06-27 15:55:04 +08:00
render() {
const { userName } = this.state;
const suffix = userName ? <Icon type="close-circle" onClick={this.emitEmpty} /> : null;
return (
<Input
placeholder="Enter your username"
prefix={<Icon type="user" style={{ color: 'rgba(0,0,0,.25)' }} />}
suffix={suffix}
value={userName}
onChange={this.onChangeUserName}
ref={node => this.userNameInput = node}
/>
);
}
}
ReactDOM.render(<App />, mountNode);
````
````css
.anticon-close-circle {
cursor: pointer;
color: #ccc;
transition: color 0.3s;
2017-01-09 14:24:08 +08:00
font-size: 12px;
}
.anticon-close-circle:hover {
color: #999;
}
.anticon-close-circle:active {
color: #666;
}
````