在谷歌花了几天试图找到答案后,我转向那些我应该开始的人。我已经安装并使用Overlay取得了巨大成功。问题是能够对叠加视图进行jQuery更改。它在IE和FF中完美运行,但在Chrome或Safari(webkit)中无效。我意识到webkit中内置了安全保护,但视图与网站的其他部分位于同一服务器上。我做错了什么?有没有关于绕过这些证券的提示?任何提示都会有帮助。如果您已成功完成此操作,请提供示例代码。如果可能的话,我今天需要完成这项工作。此示例是正在使用的代码的摘录。 谢谢, 拉尔夫
var triggers = jQuery("input[rel]").overlay({
mask: {
color: '#ebecff',
loadSpeed: 200,
opacity: 0.9
},
effect: 'apple',
onBeforeLoad: function() {
// grab wrapper element inside content
var wrap = this.getOverlay().find(".contentWrap");
var link = "index.php?page=account.billing&option=com_virtuemart";
//Add the link and style attributes to the basic iframe
//jQuery(theframe).attr({ src: link, style: 'height:650px; width:760px; border:none;' });
jQuery(theframe).attr({ src: link, style: 'height:700px; width:840px; border:none;' });
//Write the iframe into the wrap
wrap.html(theframe);
},
onLoad: function(){
var inFrame = this.getOverlay().find("#innerFrame");
jQuery(inFrame).contents().find('form').attr('onsubmit','window.parent.CloseOverlayFromIframe();');
}
});
答案 0 :(得分:0)
使用外部样式表防止在Safari 3+和Chrome(基于WebKit的浏览器)中出现不可预测的行为时,不要对document.ready()事件使用Apple效果。当您删除effect: 'apple',
时,您会看到它在safari和chrome中有效。
该网站建议采用两种方法解决苹果效应问题:
在page的末尾。