我有一个主窗口,我将使用window.open打开一个子窗口。现在我想将一些值作为参数传递给子窗口中父窗口的URL并刷新父窗口。我怎么能这样做?
答案 0 :(得分:0)
window.open("http://www.yousite.com","mywindow","menubar=1,resizable=1,width=350,height=250");
这些是您可以使用的参数:
status - 窗口底部的状态栏
toolbar - 标准浏览器工具栏,带有后退和前进等按钮
location - 您输入URL的位置输入字段
菜单栏 - 窗口的菜单栏
目录 - 标准的浏览器目录按钮,例如What's New和What's Cool
可调整大小 - 允许/禁止用户调整窗口大小
scrollbars - 如果文档大于窗口,则启用滚动条
height - 指定窗口的高度(以像素为单位)。 (例如:height ='350')
width - 指定窗口的宽度(以像素为单位)。
答案 1 :(得分:0)
function openpopup(url)
{ window.open(url,'pop_window','toolbar=no,menubar=no,location=no,scrollbars=yes,height=300,
width=450,left=200,top=200');
}
//call from code behind
Page.ClientScript.RegisterStartupScript(this.GetType(), "aa", "<script language="'javascript'">openpopup('page1.aspx?variable="+variabledata+"');</script>");