作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下函数可以在弹出窗口中打开网址:
function windowPopup(url, width, height) {
// center
var left = (screen.width / 2) - (width / 2),
top = (screen.height / 2) - (height / 2);
handle=window.open(
url,
"",
"menubar=no,toolbar=no,resizable=yes,scrollbars=yes,width=" +
width + ",height=" + height + ",top=" + top + ",left=" + left
);
}
我希望能够检测到此窗口何时关闭并执行一些代码。如何使用函数中的句柄来绑定(bind)卸载或关闭?
我想知道有人分享到 Twitter 后窗口是否关闭:
windowPopup("https://twitter.com/intent/tweet/?text=Check%20out%20this%20website!&url=https%3A%2F%2Fgoogle.com%2F", 500, 300);
我更新了拉尔的建议:
function windowPopup(url, width, height) {
// center
var left = (screen.width / 2) - (width / 2),
top = (screen.height / 2) - (height / 2);
handle=window.open(
url,
"",
"menubar=no,toolbar=no,resizable=yes,scrollbars=yes,width=" +
width + ",height=" + height + ",top=" + top + ",left=" + left
);
handle.onbeforeunload = function() {
alert('Bye!');
}
}
虽然这对某些弹出窗口有效,但当我关闭 Twitter 窗口时却不起作用......
最佳答案
您正在寻找 beforeunload
事件:
handle.onbeforeunload = function() {
console.log('Bye!');
}
关于javascript - 如何将关闭事件绑定(bind)到 window.open(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43276757/
我是一名优秀的程序员,十分优秀!