IE ,window.open必须在不同窗口中打开同一域的不同网页

发布于 2024-12-15 00:57:39 字数 425 浏览 3 评论 0原文

我有一个 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 thisenter image description here

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 技术交流群。

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

发布评论

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

评论(1

零崎曲识 2024-12-22 00:57:40

提供区域 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");
}

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