gpt4 book ai didi

javascript - 在JS中随机生成带有url的自定义文本

转载 作者:行者123 更新时间:2023-11-28 01:17:37 25 4
gpt4 key购买 nike

我从列表中找到了这个 javascript 随机文本生成器

var quotes=new Array();
quotes[0] = "text1";
quotes[1] = "Text2";
quotes[2] = "text3";
quotes[3] = "text4";

var q = quotes.length;
var whichquote=Math.round(Math.random()*(q-1));
function showquote(){document.write(quotes[whichquote]);}
showquote();

和 html:

<script language="javascript" type="text/javascript" src="quotes.js"></script>

所以,它工作得很好,但是......我希望生成的每个文本都有指定的 url,比如 <a href="#">

谢谢!

最佳答案

就我能得到你需要的东西而言,这可能会完成工作:

function showquote(){document.write('<a href="#">' + quotes[whichquote] + '</a>');}

关于javascript - 在JS中随机生成带有url的自定义文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35133264/

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