转到html中的两个URL

时间:2015-10-24 10:50:12

标签: html

在begin.html上,我写了一些代码:

<a target="_blank" href="test.php">Proceed</a>;

这使链接在新标签/窗口中打开。同时,我想通过点击相同的链接从begin.html转到test2.php。 所以,基本上,在我的操作结束时,一个选项卡显示test2.php,新选项卡显示test.php。 可能吗?

2 个答案:

答案 0 :(得分:1)

考虑到你在根文件夹中有test2.php作为test.php。你可以这样试试。不要忘记在脚本标记中添加您的JavaScript代码。

<script>
function OpenNewPage() {
  var win = window.open('test2.php', '_blank');
  win.focus();
}
</script>

<a target="_blank" href="test.php" onclick="OpenNewPage();">Proceed</a>

答案 1 :(得分:1)

你需要JavaScript来做到这一点;即使有了它,浏览器很可能会阻止第二个窗口认为它是一个弹出窗口:

<button id="b">Click here</button>

document.getElementById("b").addEventListener("click", function() {

    window.open("https://www.google.com", "_blank");
    window.open("https://www.bing.com", "_blank");

}, false);

请参阅此JSFiddle