jQuery Mobile选择焦点上的输入文本

Bis*_*hoy 2 mobile jquery select focus highlight

我正在使用jQuery mobile,我现在想要点击时突出显示输入文本字段.

我正在使用这个:

$(document).ready(function() {
    $('.highlight').focus(texty_focus);
});
function texty_focus() {
    var input = $(this);
    setTimeout(function() { 
        input.select();
    },10);
}
Run Code Online (Sandbox Code Playgroud)

但它不适用于我的手机.有什么建议?

Gre*_*der 5

也许你可以试试这个:

$(document).ready(function() {
     $('.highlight').click(function(){
         var input = this;
         input.focus();
         input.setSelectionRange(0,999); 
     });
});
Run Code Online (Sandbox Code Playgroud)