0

我需要在我们的一个处理页面上显示退出弹出窗口。我通过注册客户端javascript来显示退出弹出窗口

window.onbeforeunload = ShowExitPopUp();

如果您关闭窗口或尝试输入不同的 URL,弹出窗口会正常执行。然而问题是,一旦进程完成,我的处理页面也在服务器端执行“Response.Redirect”。当 response.redirect 发生时,exitpopup 也会出现。在这种情况下,有没有办法让退出弹出窗口不显示?

这是我正在使用的下面的代码

<script type="text/javascript"> 

window.fbAsyncInit = function() {
    FB.Event.subscribe('comment.create',
    function (response) {
        window.location = "http://domain.com";
    });
    FB.Event.subscribe('comments.remove',
    function (response) {
        window.location = "http://domain.com";
    });   
};

(function() {
    var e = document.createElement('script');
    e.async = true;
    e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
    document.getElementById('fb-root').appendChild(e);
}());
//]]>
</script>



<script type="text/javascript">
var ShowExitPopup = true;
function ExitPage()
{
if (ShowExitPopup) 
{ 
ShowExitPopup = false;
location.href = "http://www.YOURURL.com/destination";
return '****************************************\n\YOUR HEADLINE\n\n YOUR TEXT1 \n\n  YOUR TEXT "\n\n                                                                                                     | |\n                                                                                                     | |\n                                                                                                    V V\n                                                      96+                                                v\n  ********************************************************\n';
}
} 
</script>
4

1 回答 1

0
if (document.getElementById('<%=Panel.ClientID %>').style.display == "") {
$find("<%= Popup.ClientID %>").hide();
document.getElementById("<%= btncloseAcc.ClientID %>").click();
}

尝试这个..........

于 2012-06-26T07:16:46.767 回答