html 在模态引导程序中显示外部链接

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 在模态引导程序中显示外部链接相关的知识,希望对你有一定的参考价值。

<a data-toggle="modal" class="btn" href="http://www.bing.com" data-target="#myModal">click me</a>
 
 
<div class="modal hide fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
    <h3 id="myModalLabel">Modal header</h3>
  </div>
  <div class="modal-body">
  </div>
</div>


$('a.btn').on('click', function(e) {
    e.preventDefault();
    var url = $(this).attr('href');
    $(".modal-body").html('<iframe width="100%" height="100%" frameborder="0" scrolling="no" allowtransparency="true" src="'+url+'"></iframe>');
});

以上是关于html 在模态引导程序中显示外部链接的主要内容,如果未能解决你的问题,请参考以下文章

Laravel 应用程序中的引导模式窗口未显示

外部样式表不会覆盖引导程序

引导模态显示后立即消失

在 Safari (cordova) 中打开外部链接

为啥我的模态没有显示?引导程序 4 [关闭]

从其他 html 文件打开模态(引导程序)