我从列表中找到了这个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>
所以,它完美无缺,但是......我希望生成的每个文本都有指定的网址,例如<a href="#">
谢谢!
答案 0 :(得分:1)
就我能得到你需要的东西而言,这可能会起到作用:
function showquote(){document.write('<a href="#">' + quotes[whichquote] + '</a>');}