2
我正在使用jQuery移動,我現在想要使輸入文本字段在點擊時突出顯示。jQuery Mobile選擇焦點輸入文本
我使用這個:
$(document).ready(function() {
$('.highlight').focus(texty_focus);
});
function texty_focus() {
var input = $(this);
setTimeout(function() {
input.select();
},10);
}
但它不工作我的手機。有什麼建議麼?
它的工作不:( – MacLover
你有這個問題的一個活生生的例子 –
我最近的變化 –