Input error with keyboard on Galaxy S2 using jQuery Mobile and Phonegap

后端 未结 6 1651
天涯浪人
天涯浪人 2021-02-07 08:23

We are developing a mobile web app in jQuery Mobile 1.0.1 and Phonegap 1.4.1 and have run into issues with the keyboard on the galaxy s2.

We have a menu which slides out

6条回答
  •  情书的邮戳
    2021-02-07 08:55

    $('#pageid').live('pageshow', function(event, ui) {
        $(this).delegate('input[data-type="search"]', 'keyup', function () {
          if($(this).val().length != 0)
            keyword = $(this).val();
    
        });
     });
    

提交回复
热议问题