gpt4 book ai didi

JavaScript - 从目录中选择一个随机页面

转载 作者:行者123 更新时间:2023-11-30 08:57:38 25 4
gpt4 key购买 nike

我正在开发一个网页,但我需要一个从目录中选择随机页面的 JS 脚本。目前我有这个脚本;

    <!-- Hide this script from old browsers --

var links = new Array(10)
links[0] = "anal.html"
links[1] = "brr-fail.htm"
links[2] = "anal.html"
links[3] = "brr-fail.htm"
links[4] = "anal.html"
links[5] = "brr-fail.htm"
links[6] = "anal.html"
links[7] = "brr-fail.htm"
links[8] = "anal.html"
links[9] = "brr-fail.htm"
links[10] = "anal.html"
function go() {
var a = 1+Math.round(Math.random()*10)
var i = a
location = links[i]
}
// -- End Hiding Here -->

</script>

(别担心,这不是同性恋色情片 - 模因)

如您所见,它有点复杂,有时会出现“未定义”页面错误。有没有办法让它从整个目录中选择一个随机页面?说些类似的话;

www.urlhere.co.uk/memes/random/

谢谢大家

最佳答案

你超出了索引,你应该这样做:

var a = Math.round(Math.random()*10);

因为 links 数组的第 0 个元素不会触发,因为 1+random..

编辑:

var a = Math.floor(Math.random() * 11);

关于JavaScript - 从目录中选择一个随机页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12110292/

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