使用javascript关闭识别窗口

时间:2014-03-05 10:50:15

标签: javascript jquery html

我的框架中有以下链接,这将打开为新窗口,我想知道打开的窗口是否关闭,因为我需要在用户关闭窗口时清除cookie。

<a href="http://stackoverflow.com/questions/ask" target="_blank">study plan new wndow</a>

2 个答案:

答案 0 :(得分:1)

HTML:

<a href="#" onclick="myWinOpen(); return false;">study plan new wndow</a>

JS:

function myWinOpen()
{
    var w = window.open('http://same-domain.com/page.html');
    w.onbeforeunload = function()
    { 
        // my code..
    }
}

答案 1 :(得分:0)

window.onunload=function(){/*SomeJavaScriptCode*/};

OR

window.onbeforeunload = function (){/*your Cookie clear code here*/}