mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 21:59:41 +08:00
20c49b7bbb
* fix: demo-focus layout * fix: update snap * fix: form noStyle test case * fix: update snap Co-authored-by: wanghongye <wanghongye@kuaishou.com>
1.6 KiB
1.6 KiB
order | title | ||||
---|---|---|---|---|---|
21 |
|
zh-CN
聚焦额外配置属性。
en-US
Focus with additional option.
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 wrap>
<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>
<br />
{input ? <Input {...sharedProps} /> : <Input.TextArea {...sharedProps} />}
</Space>
);
};
ReactDOM.render(<Demo />, mountNode);