gpt4 book ai didi

javascript - 类似的 javascript 代码吗?

转载 作者:行者123 更新时间:2023-11-28 16:21:23 24 4
gpt4 key购买 nike

我不太擅长 javascript,我想知道在 javascript 中是否可以做到这一点?

<?php

$str = file_get_contents('splashes.txt');

$splashes = explode("\n",$str);

$ind = rand(1, count($splashes)) -1;


echo $splashes[$ind];

?>

在 javascript 中相当于什么?

最佳答案

使用 XHR 请求交换 file_get_contents(),该请求可能会被同源策略阻止。

explode()split() 交换。

rand()Math.random() 交换,将 count()length 属性交换。

关于javascript - 类似的 javascript 代码吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9475215/

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