基本上,我正在努力实现在正常时间工作的this type of functionality。但是,it's not working inside bootstrap popup(点击“分享”按钮查看弹出窗口)。如何让它在bootstrap弹出窗口内工作?
代码:
<input type="text" class="form-control" id="inputShare" placeholder="" value="http://apps.companyName/wba" />
$('#inputShare').focus();
$('#inputShare').select();
答案 0 :(得分:2)
这就是我如何解决它:
$(".modal").on('shown.bs.modal', function () {
$(this).find("#inputShare").focus().select();
});
答案 1 :(得分:0)
你必须将你的js置于bootstrap弹出窗口的事件中。
$('#exampleModal').on('show.bs.modal', function (event) {
//your code here
})