免费脚本一次打开多个URL

时间:2010-09-15 05:14:46

标签: php javascript url

我正在寻找免费的PHP脚本来一次打开多个URL。如果有人在任何地方找到,请告诉我。

提前致谢。

2 个答案:

答案 0 :(得分:3)

您可能希望影响客户端的行为,在这种情况下您不需要PHP。简单的旧HTML + Javascript将执行:

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

可能会被弹出窗口拦截器抓住。

要使用PHP生成此类代码,请执行以下操作:

// say your links are in an array:
$links = array('http://www.google.com', 'http://www.yahoo.com');

$open = '';
foreach ($links as $link) {
    $open .= "window.open('{$link}'); ";
}

echo "<a href=\"#\" onclick=\"{$open}\">Open multiple links</a>";

答案 1 :(得分:1)

您可以通过此HTML代码在一个页面中打开无限制的网址。尝试将以下代码粘贴到html网页中。

<iframe src="http://yahoo.com" height="50%" width="49%" ></iframe>
<iframe src="http://yahoo.com" height="50%" width="49%" ></iframe>
<iframe src="http://yahoo.com/m" height="50%" width="49%" ></iframe>
<iframe src="http://yahoo.com/m" height="50%" width="49%" ></iframe>

注意:google.com和其他一些网站可能不允许在相框中打开其网站网址。