简体   繁体   中英

Change default keypress behaviour of Form.Item in INput type to onChange (tab out)

While using the antd library and using the Form component having an inside of always triggers a FormChanged event every single key pressed.

How do i change this behaviour to trigger the FormChanged event on when the user completes or tabs out of the text box.

 <Form onValuesChange={this.onFormChanged}> <Form.Item> <Input /> </Form.Item> </Form>

我不知道库本身,但您可以在输入本身上使用 onBlur 事件。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM