我通过引导模式管理器加载外部页面,方法是在单击它时在模式内加载 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 - 知道吗?