如何从数组中随机选择一个项目并在表单域中显示

时间:2014-05-18 16:07:36

标签: javascript html arrays web

我一直在尝试从数组中随机选择一个项目,并在表单字段中显示所选的数组。我已经找到了如何使用<p id="item"> </p>显示段落中的项目(可能不正确),但无法弄清楚如何在表单字段中显示它:/请帮助。

1 个答案:

答案 0 :(得分:0)

您可以获得这样的随机值

var rand = myArray[Math.floor(Math.random() * myArray.length)];

然后,您可以使用

在表单字段中显示它
document.getElementById('id1').value = rand

其中id1是您的表单域的ID