Twitter bootstrap modal input field focus

后端 未结 9 715
不知归路
不知归路 2020-12-08 03:56

I have the following modal form from example:




        
9条回答
  •  时光说笑
    2020-12-08 04:32

    You can also try

    $('#the-modal').on('shown.bs.modal', function(e) {
        $('#the-input').focus();
    });
    

提交回复
热议问题