我正在尝试将fancybox嵌入到CRM2011表单中,并显示参考页面。问题是在兼容模式下,内容似乎没有完全呈现。不幸的是,我对doctype或html标签没有任何控制(为了符合MS Dynamics)。
我意识到这可能甚至没有资格作为FancyBox问题,但我只是希望大家可能有一些我可以开始寻找的地方。
这是我用来初始化的代码:
$.fancybox.open(
{
href: 'https://myreferralpod.com/refapp/',
title: 'Create Referral', // + name
type: 'iframe',
iframe: {preload: true},
padding: 5,
margin: [20,20,5,20],
helpers : {
overlay : {
closeClick : false,
showEarly : false
}
},
//autoResize : true,
fitToView : true,
width : '80%',
height : '80%',
openEffect : 'none',
closeEffect : 'none',
arrows: false
});
(抱歉,暂无法发布图片)
以下是兼容模式中显示的内容: Compatibility Mode
这是常规(期望)出现的内容 Regular Mode
答案 0 :(得分:0)
<div class="container" id="page"...
需要添加额外的css样式。尝试添加position:relative
这是在myreferralpod.com/refapp/
页面内(不在CRM方面)。