mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 21:59:41 +08:00
37 lines
591 B
Markdown
37 lines
591 B
Markdown
---
|
|
order: 12
|
|
title:
|
|
zh-CN: 带字数提示
|
|
en-US: 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<HTMLInputElement | HTMLTextAreaElement>) => {
|
|
console.log('Change:', e.target.value);
|
|
};
|
|
|
|
const App: React.FC = () => (
|
|
<>
|
|
<Input showCount maxLength={20} onChange={onChange} />
|
|
<br />
|
|
<br />
|
|
<TextArea showCount maxLength={100} onChange={onChange} />
|
|
</>
|
|
);
|
|
|
|
export default App;
|
|
```
|