我在木偶视图上有这个功能
onShow: function(){
// $('#boxId').val("I am here");
$('#boxId').focus();
}
当我使用它时,$('#boxId').val("I am here");
它运行良好并且元素的值为I am here
. 但是当我试图专注于那个元素时,它不起作用,它不专注。知道有什么问题吗?
我也试过
<input type="text" class="input_txt" id="boxId" maxlength="8" onload="$('#boxId').focus()">
和
onShow: function(){;
$(document).ready(function(){
$('#boxId').focus();
});
}
但它也没有用。
最后解决了:
onShow: function(){
setTimeout(function(){
$('#boxId').focus();
},1000);
},