You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
---
|
|
|
|
order: 12
|
|
|
|
title:
|
|
|
|
zh-CN: 带字数提示的文本域
|
|
|
|
en-US: Textarea 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(
|
|
|
|
<TextArea showCount maxLength={100} style={{ height: 120 }} onChange={onChange} />,
|
|
|
|
mountNode,
|
|
|
|
);
|
|
|
|
```
|