我正在尝试构建一个随机的JS单词列表生成器,但我这里的代码只生成一个单词。实际上我希望它能够从之前给出的列表中生成30个单词的列表,它可能是60个单词列表或700个但是结果应该总是30个没有重复的单词,但我不知道如何实现这个
另外,我希望访问者介绍他们自己的单词列表,然后点击"生成一个新的单词列表"然后页面将随机化,并在每次单击按钮时为其提供30个不同顺序的单词列表。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="english">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<title></title>
<style type="text/css">
form {
float:left;
padding:20px 20px 10px;
border:1px solid #999;
}
label {
float:left;
width:100px;
line-height:22px;
margin-bottom:10px;
font-size:12px;
}
input {
margin-bottom:10px;
}
</style>
<script type="text/javascript">
function init(){
words0=['art','car','bus','earth','camera','phone','sun','light','number',];
df=document.forms[0];
df.reset();
df[1].onclick=function() {
rnd0=Math.floor(Math.random()*words0.length);
df[0].value=words0[rnd0];
}
}
window.addEventListener?
window.addEventListener('load',init,false):
window.attachEvent('onload',init);
</script>
</head>
<body>
<form action="#">
<div>
<label>word one:</label><input type="text" readonly="readonly"><br>
<input type="button" value="Click here to get random words">
<input type="reset" value="Clear">
</div>
</form>
</body>
</html>
答案 0 :(得分:1)
如果你想从一个数组中随机获取N个项目,一个经典的方法是:
示例代码:
function samples(items, number){
items.sort(function() {return 0.5 - Math.random()});
return items.slice(0, number);
}
请注意,shuffle算法可能不是最好的,它是作为一个例子提供的,如@Phylogenesis所述。
如果你想避免重新发明轮子,你也可以使用undercore.js,例如,提供sample method