我想要一个代码页从一个页面打开2个链接?

时间:2016-05-27 19:03:27

标签: javascript php redirect hyperlink

我有一个链接,比如www.example.com/page.php。如果我打开此链接,那么它如何打开www.website1.com和www.website2.com page.php是我放置代码的地方。 我想要的是当我打开www.example.com/page.php时会重定向到website1和website2的代码。 请给我重定向代码。

window.location = "http://new-website.com";
window.location.href = "http://new-website.com";
window.location.assign("http://new-website.com");
window.location.replace("http://new-website.com");

我搜索了一些代码;这会有用吗?

1 个答案:

答案 0 :(得分:0)

<html>
<body>
    <script>
        window.open('http://www.website1.com');
        location.href="http://www.website2.com";
    </script>
</body>
</html>

从php脚本加载html页面。它会打开一个带有一个链接的窗口,并将当前标签重定向到另一个链接。