如何在不使用 JavaScript 的情况下单击一次打开两个页面?

发布于 2024-10-30 12:52:50 字数 81 浏览 1 评论 0原文

我在链接中有一些文字。当我点击它时,我必须打开 2 页。这里没问题...但问题是我不被允许使用 JavaScript。这只能通过 HTML 实现吗?

I have some text in a link. When I click on it I must open 2 pages. No problem here... but the trick is that I am not allowed to use JavaScript. Is this possible only with HTML?

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

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

发布评论

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

评论(5

咿呀咿呀哟 2024-11-06 12:52:50

如果没有 JavaScript,则无法通过单击一个链接来打开两个页面,除非两个页面都被框架在通过单击该链接打开的一页上。对于 JS,这很简单:

<p><a href="#" onclick="window.open('http://google.com');
    window.open('http://yahoo.com');">Click to open Google and Yahoo</a></p>

请注意,这将被网络浏览器内置的弹出窗口阻止程序阻止,但通常会通知您这一点。

Without JavaScript, it's not possible to open two pages by clicking one link unless both pages are framed on the one page that opens from clicking the link. With JS it's trivial:

<p><a href="#" onclick="window.open('http://google.com');
    window.open('http://yahoo.com');">Click to open Google and Yahoo</a></p>

Do note that this will be blocked by popup blockers built into web browsers but you are usually notified of this.

地狱即天堂 2024-11-06 12:52:50
<a href="http://www.omsaicreche.blogspot.com" onclick="location.href='http://www.omsaivatikanoida.blogspot.com';" target="_blank">Open Two Links With One Click</a>

我尝试了上面的代码。我无法在旧页面中获得成功。然后我在博客中创建了一个新页面并输入以下代码......我成功了

<a href="http://www.omsaicreche.blogspot.com" onclick="location.href='http://www.omsaivatikanoida.blogspot.com';" target="_blank">Open Two Links With One Click</a>

I tried the above codes. I could not get success in old page. Than I created a new page in blogger and types following codes... I was successful

久光 2024-11-06 12:52:50

仅使用 html 是不可能的

it is not possible to do using only html

孤独陪着我 2024-11-06 12:52:50

如果您有权限编辑要打开的页面,您可以使用 href 到“A”页面,在 A 页面中您可以在 body 标记的 onpageload 属性中放置指向 B 页面的链接。

If you have the authority to edit the pages to be opened, you can href to 'A' page and in the A page you can put link to B page in onpageload attribute of body tag.

孤城病女 2024-11-06 12:52:50

它运行良好;

<p><a href="#"onclick="window.open('http://google.com');window.open('http://yahoo.com');">Click to open Google and Yahoo</a></p>

it is working perfectly;

<p><a href="#"onclick="window.open('http://google.com');window.open('http://yahoo.com');">Click to open Google and Yahoo</a></p>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文