gpt4 book ai didi

javascript - 如何打开一个窗口并选择该窗口中的对象?

转载 作者:行者123 更新时间:2023-11-29 22:22:40 25 4
gpt4 key购买 nike

我有

newWindow=window.open(document.URL);
$('div#header',newWindow.document).hide();
$('div#footer',newWindow.document).hide();

但是好像不行。有什么想法吗?

最佳答案

试试这个:

newWindow = window.open(document.URL);
$(newWindow).load(function() {
$('#header', newWindow.document).hide();
$('#footer', newWindow.document).hide();
});

关于javascript - 如何打开一个窗口并选择该窗口中的对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11475699/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com