IE ,window.open必须在不同窗口中打开同一域的不同网页
我有一个 html 页面,说 abc.htm 它有 2 个锚点,分别指向 link1.htm 和 link2.htm。代码看起来像这样
现在我的要求是当我单击 GOTOLink1 时必须使用 link1 打开新窗口。嗯。 如果不关闭它,现在单击 GOTOLink2,它必须在新窗口中打开 link2.htm 而不会干扰第一个窗口。 现在打开了 3 个窗口,如果我单击 GOTOLink1,它必须聚焦现有窗口(无需打开新窗口),GOTOLink2 也是如此。 最后,我的主要要求是 1.如果不存在则必须打开新窗口 2.如果窗口存在,则必须聚焦现有窗口。 IE 无法实现上述 2 个功能。 FF 仅在特征 1 上取得成功。 请帮我。我需要 IE、FF、Crome 的兼容性
I have html page say abc.htm it has 2 anchors which are pointing to link1.htm and link2.htm. code looks like this
Now my requirement is when i click on GOTOLink1 new window has to be opend with link1.htm.
Without closing this,now am clicking on GOTOLink2, it has to open link2.htm in new window without disturbing first window.
Now 3 windows are open , If I click on GOTOLink1 it has to focus the existing window(no new window has to be opened), same for GOTOLink2 also.
Finally , my major requiremnet is
1.New window has to be opened if not exist
2.If window exists it has to focus the existing window.
IE is failing for above 2 features. FF is sucess in feature 1 only.
Please help me. I need the compatabity for IE,FF,Crome
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
提供区域 windowName 而不是 null。
EX:
函数(url,distictName)
{
Window.Open(URL, distictName, "位置=否,滚动条=是,宽度=1000,高度=700,可调整大小=是");
}
Give the distict windowName instead of null.
EX:
function(url,distictName)
{
Window.Open(URL, distictName, "location=no,scrollbars=yes,width=1000,height=700,resizable=yes");
}