琐碎的问题。到目前为止我所拥有的http://jsfiddle.net/Dth2y/1/
任务,下一个按钮应该从数组中随机选择一个值并从数组中删除该值。到目前为止,这称为 getNames 函数,在此函数中,从数组中随机选择的值在附加到 html 后也应该被删除。
HTML
<h1 id="name">Click Next To Start</h1> <button id="next">NEXT NAME</button> <button>SKIP NAME</button>
</p>
JS
$(document).ready(function() {
var names = [
"Paul",
"Louise",
"Adam",
"Lewis",
"Rachel"
];
function getNames() {
return names[Math.floor(Math.random() * names.length)];
}
$("#next").click(function() {
$('#name').text(getNames())
});
});
</p>
我已经使用 splice 方法看到了类似的问题,我试图一起破解一个版本,但想知道是否有更有效的方法。