是否可以使用javascriptand之前调用某些函数来捕获新的浏览器窗口打开事件?感谢
答案 0 :(得分:9)
window
没有beforeload
事件。
像这样的东西可以工作,但请记住,重写window.open是非常危险的。
var windowOpen = window.open;
window.open = function(url, name, features, replace) {
alert("opening a window");
// do other stuff here
windowOpen(url, name, features, replace);
}
window.open("http://www.google.com");