mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
32 lines
523 B
Markdown
32 lines
523 B
Markdown
---
|
|
order: 12
|
|
title:
|
|
zh-CN: 带字数提示的文本域
|
|
en-US: Textarea with character counting
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
展示字数提示。
|
|
|
|
## en-US
|
|
|
|
Show character counting.
|
|
|
|
```tsx
|
|
import { Input } from 'antd';
|
|
import React from 'react';
|
|
|
|
const { TextArea } = Input;
|
|
|
|
const onChange = (e: React.ChangeEvent<HTMLTextAreaElement>) => {
|
|
console.log('Change:', e.target.value);
|
|
};
|
|
|
|
const App: React.FC = () => (
|
|
<TextArea showCount maxLength={100} style={{ height: 120 }} onChange={onChange} />
|
|
);
|
|
|
|
export default App;
|
|
```
|