当任何用户点击链接时,他们会重定向到主index.php网页,然后通过单击下面的代码按钮将其重定向到下面数组中提到的三个随机页面。它工作得非常好。 现在,我需要做一个技巧:例如,75个用户点击链接,当25个用户重定向到 index_control.php 时,更多的工作人员不应该重定向到 index_control.php 页面然后只有其他两个页面必须打开才能让剩余用户重定向。限制每页访问次数为25次。 谁能想出怎么做?
<html>
<button onclick="randomLink();">Click here to go somewhere else!</button>
<script type="text/javascript">
var randomLink = function () {
var links = [
"index_non_intrusive.php",
"index_control.php",
"index_intrusive.php"];
var max = (links.length)
var randomNumber = Math.floor(Math.random()*max);
var link = links[randomNumber];
window.location = link;
//window.location = "http://" + link;
}
</script>
</html>