Tag: modal window

从另一个模态打开一个模态并关闭第一个(启动)模态

我正在使用Bootstrap Modal Window插件,它的工作正常,但我想打开另一个模型窗口,当我点击下一个并关闭第一个。 我该怎么做? $(‘[data-toggle=”modal”]’).click(function(e) { e.preventDefault(); var url = $(this).attr(‘href’); if (url.indexOf(‘#’) == 0) { $(url).modal(‘open’); } else { $.get(url, function(data) { $(data).modal(); }).success(function() { $(‘input:text:visible:first’).focus(); }); } }); Add Record https://stackoverflow.com/questions/25319034/open-a-modal-from-another-modal-and-close-the-first-launching-modal/next.html文件代码 × First Window Discard Submit Next

如何在模态窗口中显示pdf?

我有一个模态窗口,其中包含一个锚文本。 当我点击此链接时,它必须在其他地方调用pdf并将其显示在弹出窗口中。 我怎样才能做到这一点 ? 请帮助。