我正在尝试重定向到 .fancybox 的“onclose”属性上的 URL ...它确实有效。有任何想法吗?代码如下。注意:模式看起来很好,但是当用户按下顶部的“x”时......屏幕只是空白。
<script type="text/javascript">
showModal();
function showModal() {
var url = document.URL;
var popUp = '//local.meau.com/Support-Center/Service-Notifications/Search-Tips.aspx';
var site = popUp;
$(document).ready(function () {
$.fancybox({
'width': 500,
'height': '55%',
'autoScale': false,
'transitionIn': 'none',
'transitionOut': 'none',
'type': 'iframe',
'href': site,
'showCloseButton': true,
'onClose' : function(){location.href = "http://local.meau.com/Support-Center.aspx";}
});
});
}
</script>