Focus Input Box On Key Pressed

前端 未结 1 1761
暖寄归人
暖寄归人 2021-01-26 18:36

I have created a live search, I want when user clicks on ESC it should focus to input box and remove its content if not empty automatically.

I am able to remove the cont

1条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-26 19:20

    You can't call clear function on input.

    You have 2 options:

    Clear the specific input using input.value = '';

    Like this:

    
      
      
      
    

    Or you can use the method reset() but you can call it only on form element. The good point in this solution is if you want to clear many inputs.

    Like this:

    
      

    0 讨论(0)
提交回复
热议问题