随机化关键字链接

发布于 2024-11-02 09:49:50 字数 136 浏览 3 评论 0原文

我目前正在寻找一种方法,可以从总共约 50 个关键字/链接中随机显示五个关键字/链接。例如,一个随机抓取关键字和链接的功能,并根据我喜欢的 CSS 将它们显示在网页中。

这听起来很简单,但我似乎找不到我正在寻找的答案。任何帮助表示赞赏!谢谢!

I'm currently looking for a method to display five keywords/links at a time from a total of about 50 at random. So for example, a function to grab a keyword and the links to go with them at random, and have them display in a webpage according to what I prefer with CSS.

It sounds simple enough but I just can't seem to find the answer I'm looking for. Any help is appreciated! Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

滿滿的愛 2024-11-09 09:49:50

类似的事情?

function getRandomLinks(count,links){
    var randomlinks = [];
    for(var i = 0; i < count; i++){
        randomlinks.push(links.splice(Math.floor(Math.random()*links.length),1)[0]);
    }
    return randomlinks;
}
console.log(getRandomLinks(2,["link1","link2","link3","link4"]));

Something like that?

function getRandomLinks(count,links){
    var randomlinks = [];
    for(var i = 0; i < count; i++){
        randomlinks.push(links.splice(Math.floor(Math.random()*links.length),1)[0]);
    }
    return randomlinks;
}
console.log(getRandomLinks(2,["link1","link2","link3","link4"]));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文