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)
但它不适用于我的手机.有什么建议?
也许你可以试试这个:
$(document).ready(function() {
$('.highlight').click(function(){
var input = this;
input.focus();
input.setSelectionRange(0,999);
});
});
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
4205 次 |
| 最近记录: |