不工作我使用jQuery的工具疊加,讓我來加載外部網頁 - http://flowplayer.org/tools/demos/overlay/external.htmljQuery的工具疊加在IE7
我在IE7中遇到的問題(在IE8 /鉻等正常工作)
當我點擊那個調用覆蓋層時,我發送到實際的外部文件,而不是留在頁面上,並有覆蓋層,包括外部文件。
這裏是jQuery的:
<script>
$(function() {
// if the function argument is given to overlay,
// it is assumed to be the onBeforeLoad event listener
$("a[rel]").overlay({
mask: {
color: '#000',
loadSpeed: 200,
opacity: 0.8,
},
onBeforeLoad: function() {
// grab wrapper element inside content
var wrap = this.getOverlay().find(".contentWrap");
// load the page specified in the trigger
wrap.load(this.getTrigger().attr("href"));
}
});
});
$('.close').live('click', function() {
$("#overlay").fadeOut('slow', function() {
});
$("#exposeMask").fadeOut('slow', function() {
});
});
</script>
而這裏的HTML:
<!-- overlayed element -->
<div id="overlay" class="apple_overlay">
<!-- the external content is loaded inside this tag -->
<div class="contentWrap"></div>
</div>
<a href="Overlay_Login.php" rel="#overlay" class='button button_small_grey'>Login</a>
如果您還沒有已經猜到了我與jQuery知識也不是很大。所以,如果任何人都可以解決這個問題,那就非常感謝。
您還沒有提到,這是一個新的問題?就像你更新了什麼?或者這是一個新的安裝,你不能使用IE7? – Sparky
你的問題解決了嗎? – Sparky