我在这里遇到问题。在我的网站上打开模态时,我想关注第一个表单字段(在模态中)。
相关网站是:http://capscihealth.staging.wpengine.com/news-and-blog/
点击“演示”按钮,它将打开模态。
我用来尝试关注模态中第一个表单字段的代码如下:
jQuery(document).ready(function(){
$("#demo").on('show.modal', function(){
$(this).find('#input_1_1').focus();
});
});
似乎应该可以正常工作,但事实并非如此。我错过了什么?
答案 0 :(得分:0)
愚蠢的我,我通过将show.modal改为modal解决了它:open。
显然我并没有直接思考。