How to hide keyboard on phonegap android

前端 未结 5 989
北荒
北荒 2021-01-19 07:14

I am using 1.0 PhoneGap for android. I have an application form with several fields, one of them is to put the anniversary. I put a datepicker that field, yet when you click

5条回答
  •  南方客
    南方客 (楼主)
    2021-01-19 07:49

    Not sure what JS library you're using, but in jQuery, you'd do:

    $('#datepicker').focus(function() {
      this.blur();
    });
    

提交回复
热议问题