Visit here 因此,每当用户单击该链接时,他们都会被重定向-6ren">
gpt4 book ai didi

javascript - 单击 php 或 Javascript 时随机 URL 重定向

转载 作者:行者123 更新时间:2023-11-28 12:58:02 26 4
gpt4 key购买 nike

我想从列表中重定向到随机 URL。

示例:我有 3 个网址:Google.com、Facebook.com、yahoo.com。

<a href="<?php $sites[array_rand($sites)] ?>">Visit here</a>

因此,每当用户单击该链接时,他们都会被重定向到数组中的 3 个 URL 之一。我已经尝试过这段代码,但无法按需要工作:

$sites = array(
'http://www.google.com/',
'http://www.facebook.com/',
'http://www.yahoo.com/'
);
die();

最佳答案

使用 javascript 实现相同的功能:

<a href='javascript:openUrl()'>Visit here</a>
<script>
var sites=['http://www.google.com/',
'http://www.msn.com/',
'http://www.yahoo.com/'
];

function openUrl(){
var i = Math.round(Math.random()*(sites.length-1));
window.location.href=sites[i];
return false;
}
</script>

关于javascript - 单击 php 或 Javascript 时随机 URL 重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53250161/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com