如何在不使用 JavaScript 的情况下单击一次打开两个页面?
我在链接中有一些文字。当我点击它时,我必须打开 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
如果没有 JavaScript,则无法通过单击一个链接来打开两个页面,除非两个页面都被框架在通过单击该链接打开的一页上。对于 JS,这很简单:
请注意,这将被网络浏览器内置的弹出窗口阻止程序阻止,但通常会通知您这一点。
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:
Do note that this will be blocked by popup blockers built into web browsers but you are usually notified of this.
我尝试了上面的代码。我无法在旧页面中获得成功。然后我在博客中创建了一个新页面并输入以下代码......我成功了
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
仅使用 html 是不可能的
it is not possible to do using only html
如果您有权限编辑要打开的页面,您可以使用 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.
它运行良好;
it is working perfectly;