mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 07:39:36 +08:00
85 lines
1.6 KiB
Markdown
85 lines
1.6 KiB
Markdown
|
---
|
||
|
order: 21
|
||
|
title:
|
||
|
zh-CN: 聚焦
|
||
|
en-US: Focus
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
聚焦额外配置属性。
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
Focus with additional option.
|
||
|
|
||
|
```tsx
|
||
|
import { Input, Space, Button, Switch } from 'antd';
|
||
|
|
||
|
const Demo = () => {
|
||
|
const inputRef = React.useRef<any>(null);
|
||
|
const [input, setInput] = React.useState(true);
|
||
|
|
||
|
const sharedProps = {
|
||
|
style: { width: '100%' },
|
||
|
defaultValue: 'Ant Design love you!',
|
||
|
ref: inputRef,
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<Space direction="vertical" style={{ width: '100%' }}>
|
||
|
<Space>
|
||
|
<Button
|
||
|
onClick={() => {
|
||
|
inputRef.current!.focus({
|
||
|
cursor: 'start',
|
||
|
});
|
||
|
}}
|
||
|
>
|
||
|
Focus at first
|
||
|
</Button>
|
||
|
<Button
|
||
|
onClick={() => {
|
||
|
inputRef.current!.focus({
|
||
|
cursor: 'end',
|
||
|
});
|
||
|
}}
|
||
|
>
|
||
|
Focus at last
|
||
|
</Button>
|
||
|
<Button
|
||
|
onClick={() => {
|
||
|
inputRef.current!.focus({
|
||
|
cursor: 'all',
|
||
|
});
|
||
|
}}
|
||
|
>
|
||
|
Focus to select all
|
||
|
</Button>
|
||
|
<Button
|
||
|
onClick={() => {
|
||
|
inputRef.current!.focus({
|
||
|
preventScroll: true,
|
||
|
});
|
||
|
}}
|
||
|
>
|
||
|
Focus prevent scroll
|
||
|
</Button>
|
||
|
<Switch
|
||
|
checked={input}
|
||
|
checkedChildren="Input"
|
||
|
unCheckedChildren="TextArea"
|
||
|
onChange={() => {
|
||
|
setInput(!input);
|
||
|
}}
|
||
|
/>
|
||
|
</Space>
|
||
|
|
||
|
{input ? <Input {...sharedProps} /> : <Input.TextArea {...sharedProps} />}
|
||
|
</Space>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
ReactDOM.render(<Demo />, mountNode);
|
||
|
```
|