我从列表中找到了这个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/