admin管理员组文章数量:1351527
Is there anything that prevents me from adding a event listener to the window that results from a window.open()
call?
I am trying to set a handler function to be triggered on a visibility change event on the new document, but this handler function is not being called.
Is there anything that prevents me from adding a event listener to the window that results from a window.open()
call?
I am trying to set a handler function to be triggered on a visibility change event on the new document, but this handler function is not being called.
Share Improve this question edited Nov 14, 2021 at 15:04 Brian Tompsett - 汤莱恩 5,89372 gold badges61 silver badges133 bronze badges asked May 4, 2015 at 21:38 IzabelaIzabela 3431 gold badge4 silver badges15 bronze badges 1-
Is the document you are opening with
window.open()
the same origin (e.g. same domain, port and protocol) as the one you are opening it from? If not, then the browser restricts what you can do with a cross origin document, including the installation of event handlers. – jfriend00 Commented May 4, 2015 at 22:25
1 Answer
Reset to default 7There's nothing that prevents you from doing that (as long as the window you are opening is in the same domain as the parent/opener window; Just imagine what malicious people could do if that weren't the case).
Once you have the window
object of that new window, then you can do whatever you want to it. window.open()
returns the window
object of the new window:
// * All of this code is happening inside of the parent window,
// * but you can also 'inject' scripts into the new window if you wish.
// window.open() returns the new window's window object
var newWin = window.open('http://stackoverflow.');
// Run all of your code onload, so you can manipulate the
// new window's DOM. Else, you're just manipulating an empty doc.
newWin.onload = function () {
// `this`, in this context, makes reference to the new window object
// You can use DOM methods, on the new document, with it.
var myElem = this.document.getElementById('custom-header');
console.log("Window object: ", this);
console.log("Window's location: ", this.location.href);
console.log("Id of element in new window: ", myElem.id);
// Attach a click event to the new document's body
this.document.body.onclick = function () {
// `this`, inside of a listener, is the element itself
// but this console.log will log inside of the parent window
console.log(this);
this.style.transition = 'all 1s';
this.style.opacity = 0;
};
this.document.body.addEventListener('click', function () {
// Now, let's log inside of the new window.
// Since in here, this === this.document.body,
// then you'll have to use the newWin var we set before.
// newWin is the window object.
newWin.console.log('Logging in new window!');
});
};
本文标签: javascriptAdd event listener to document opened in new windowStack Overflow
版权声明:本文标题:javascript - Add event listener to document opened in new window - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743669266a2519258.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论