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

时间:2013-05-18 02:53:32

标签: jquery select mobile focus highlight

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

我用这个:

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

但它不能在我的手机上运行。有什么建议吗?

1 个答案:

答案 0 :(得分:5)

也许你可以试试这个:

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