Try this
You can use window.onbeforeunload event to call any function
However, alert,prompt,confirm boxes are not allowed.
you can return any string, to show any message.
//var _close = window.onbeforeunload;
window.onbeforeunload = function () {
// window.opener.alert("test");
//_close();
return callBack();
};
function callBack()
{
return "Testing";
}
If you suppose to close any other child window
You can try this
var k = window.open("url");
k.onbeforeunload = callBack;
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…