Angular2 - Focusing a textbox on component load

前端 未结 10 1555
刺人心
刺人心 2020-12-02 16:29

I am developing a component in Angular2 (Beta 8). The component has a textbox and a dropdown. I would like to set the focus in textbox as soon as component is loaded or on c

10条回答
  •  囚心锁ツ
    2020-12-02 17:10

    Also, it can be done dynamically like so...

    
    

    Where input is

    const input = {
      id: "my-input",
      type: "text",
      autofocus: true
    };
    

提交回复
热议问题