1

我通过引导模式管理器加载外部页面,方法是在单击它时在模式内加载 iframe,并且我试图在模式窗口内添加 iscroll 但没有运气。

用于加载其中包含 iframe 的 php 页面的代码

var j = jQuery.noConflict();
j(document).ready(function(){
j('#openBtn').on('click', function(){
// create the backdrop and wait for next modal to be triggered
j('body').modalmanager('loading');

setTimeout(function(){
j('.modal-body').load('loadtz.php', '', function(){
j('#full-width').modal({show:true});
});
}, 1000);
});

加载div的代码结构

<div id="full-width" class="modal container hide fade" tabindex="-1" role="dialog">
<div class="modal-header"><button type="button" class="close" data-dismiss="modal"     aria-hidden="true">x</button></div> 
<div class="modal-body">
</div>
</div>

我不知道是否可以在没有 li 元素的情况下使用 iscroll - 知道吗?

4

1 回答 1

0

您好,这显然是引导动画的错误。然后你必须在 bootsrap modal 结束后加载你的滚动 div。请参阅此示例http://t.co/T4sWxsKCsi

于 2014-06-06T20:16:55.967 回答