我正在使用jQuery mobile,我现在想要在点击时突出显示输入文本字段。
我用这个:
$(document).ready(function() {
$('.highlight').focus(texty_focus);
});
function texty_focus() {
var input = $(this);
setTimeout(function() {
input.select();
},10);
}
但它不能在我的手机上运行。有什么建议吗?
答案 0 :(得分:5)
也许你可以试试这个:
$(document).ready(function() {
$('.highlight').click(function(){
var input = this;
input.focus();
input.setSelectionRange(0,999);
});
});