打开主页面后如何调整弹出窗口的大小?
我打开了一个具有特定宽度、高度、顶部、左侧的弹出窗口。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此代码必须位于子窗口中
如果您想从父窗口控制弹出窗口,则使用以下代码(在父窗口中)
记住在这种情况下
newwindow
必须是全局变量或将其传递为对resize_now
函数的争论。此处演示
This code must be in child window
If you want to control the pop up window from the parent window then use the following (in parent window)
Remember in this case
newwindow
must be a global variable or pass it as a arguement to theresize_now
function.Demo here
在
one.html
的OnLoad
函数中,添加一个计时器函数,该函数将在五秒后执行。对该函数进行必要的更改。Inside the
OnLoad
function ofone.html
, add a timer function that will get executed after five seconds. Make the necessary changes in that function.