模型弹出窗口内的自动对焦不能正常工作

时间:2016-08-04 12:38:52

标签: javascript php html5 bootstrap-modal

我是php开发的新手,如果已经在堆栈中询问了这个问题,也很抱歉。我在模型弹出输入字段中自动聚焦时遇到麻烦。

以下是我申请的代码,它在本地主机上工作,但不在现场。请帮忙

这是我的代码:

$(document).ready(function(){
    $("#myModal").on('shown.bs.modal', function(){
        $(this).find('input[type="text"]').focus();
    });
});

1 个答案:

答案 0 :(得分:0)

要使用show.bs.modal,在创建事件模态显示之前,可以使用show.bs.modal,试试这个:

$(document).ready(function() {
    $("#myModal").modal("show");
});

$("#myModal").on('shown.bs.modal', function(){
    $(this).find('input[type="text"]').focus();
});