使用JS中的url随机生成自定义文本

时间:2016-02-01 14:39:36

标签: javascript html

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

谢谢!

1 个答案:

答案 0 :(得分:1)

就我能得到你需要的东西而言,这可能会起到作用:

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