ant-design輸入框自動獲取焦點

webViewDesigner發表於2020-09-23

需求:

在做移動端專案時,引入Input輸入框,當使用Input輸入框的時候希望自動獲取焦點,這樣的話在移動端輸入法就會自動彈起,方便使用者使用。

實現:

   <Input
    ref={function (input) {
      if (input != null) {
        input.focus();
      }
    }}
  />

在這裡插入圖片描述

相關文章