iphone keyboard not hiding when tapping the screen

后端 未结 7 1068
小鲜肉
小鲜肉 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:28

    Try this. This detects when you tab any element but the input and then blurs it.

    $("html").children().not("#input_field_id").click(function(){
      $("#input_field_id").blur();
    });

提交回复
热议问题