mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 08:59:40 +08:00
35 lines
483 B
Markdown
35 lines
483 B
Markdown
|
---
|
||
|
order: 12
|
||
|
title:
|
||
|
zh-CN: 带字数提示
|
||
|
en-US: With character counting
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
展示字数提示。
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
Show character counting.
|
||
|
|
||
|
```jsx
|
||
|
import { Input } from 'antd';
|
||
|
|
||
|
const { TextArea } = Input;
|
||
|
|
||
|
const onChange = e => {
|
||
|
console.log('Change:', e.target.value);
|
||
|
};
|
||
|
|
||
|
ReactDOM.render(
|
||
|
<>
|
||
|
<Input showCount maxLength={20} onChange={onChange} />
|
||
|
<br />
|
||
|
<br />
|
||
|
<TextArea showCount maxLength={100} onChange={onChange} />
|
||
|
</>,
|
||
|
mountNode,
|
||
|
);
|
||
|
```
|