打开主页面后如何调整弹出窗口的大小?

发布于 2024-11-29 08:47:15 字数 210 浏览 0 评论 0原文

我打开了一个具有特定宽度、高度、顶部、左侧的弹出窗口。

var newwindow=window.open("one.html",'name','height=200,width=650,top=300,left=100');

5 秒后,我需要通过主页中的 setInterval 函数更改弹出窗口的宽度、高度、顶部、左侧。我该怎么做?

I have opened a poup up window with a specific width,height ,top,left.

var newwindow=window.open("one.html",'name','height=200,width=650,top=300,left=100');

After 5 seconds i need to change the width,height,top,left of the popup window from a setInterval function in the main page. how can i do that.?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

勿挽旧人 2024-12-06 08:47:15

此代码必须位于子窗口中

function calledOnBodyLoad(){
  setTimeout(resize_now, 6000);
}

function resize_now(){
    window.moveTo(new_posx,new_posxy);
    window.resizeTo(newSizeX, newSizeY);
}

如果您想从父窗口控制弹出窗口,则使用以下代码(在父窗口中)

////
var newwindow=window.open("one.html",'name','height=200,width=650,top=300,left=100');
setTimeout(resize_now, 6000);
///


 function resize_now(){
        newwindow.moveTo(new_posx,new_posxy);
        newwindow.resizeTo(newSizeX, newSizeY);
    }

记住在这种情况下 newwindow 必须是全局变量或将其传递为对 resize_now 函数的争论。

此处演示

This code must be in child window

function calledOnBodyLoad(){
  setTimeout(resize_now, 6000);
}

function resize_now(){
    window.moveTo(new_posx,new_posxy);
    window.resizeTo(newSizeX, newSizeY);
}

If you want to control the pop up window from the parent window then use the following (in parent window)

////
var newwindow=window.open("one.html",'name','height=200,width=650,top=300,left=100');
setTimeout(resize_now, 6000);
///


 function resize_now(){
        newwindow.moveTo(new_posx,new_posxy);
        newwindow.resizeTo(newSizeX, newSizeY);
    }

Remember in this case newwindow must be a global variable or pass it as a arguement to the resize_now function.

Demo here

差↓一点笑了 2024-12-06 08:47:15

one.htmlOnLoad 函数中,添加一个计时器函数,该函数将在五秒后执行。对该函数进行必要的更改。

Inside the OnLoad function of one.html, add a timer function that will get executed after five seconds. Make the necessary changes in that function.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文