iphone keyboard not hiding when tapping the screen

后端 未结 7 1067
小鲜肉
小鲜肉 2021-02-07 00:06

I have an input field with number type


In normal browsers, I\'m typing some numbers and I\'m

7条回答
  •  失恋的感觉
    2021-02-07 00:34

    Hope this'll solve your issue, it simply removes the focus on active element.

    • Using Javascript
     document.activeElement.blur();
    
    • Using jQuery
     $("#Clicked_button_id").click(function() {
        $("#input_field_id").blur();                               
    });
    

提交回复
热议问题