gpt4 book ai didi

javascript - 从文本文件生成随机行

转载 作者:行者123 更新时间:2023-12-03 02:01:37 24 4
gpt4 key购买 nike

我有一个随机代码的文本文件。例如。

j23j423j4

j23j42j34

234j234j2

每次加载网页时,我都希望生成并显示一条随机行。

在我的脑海中,我正在考虑将所有行创建一个数组,然后从数组中随机选择一条行。解决这个问题的最佳方法是什么?我从未使用过 txt 文件和 jQuery。

最佳答案

首先,您必须将 txt 文件放置在某处(例如网络服务器)。现在你有 2 个选择(也许更多 :-D):

  1. 通过网络请求拉取txt文件
  2. 使用php将其插入js(或类似的东西)

由于这是一个 js 问题,假设第一个选项。

( http://api.jquery.com/jquery.ajax/ )

//This loads your file from somewhere
$.get( "text.txt", function( data ) {
//Split data by lines if its in a formated format (like json you have to decode or parse the data)
var lines = data.split("/n"));

//Random item number
var r = Math.floor(Math.random() * lines.length);

//Get random line
var line = lines[r];

alert(line);
});

这应该会给你一个提示

关于javascript - 从文本文件生成随机行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49986200/

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