Javascript / html:如何在A和B之间生成随机数?

时间:2010-12-29 23:37:11

标签: javascript html

我们有一个包含2个字段和一个按钮的表单。我们想在按钮点击输出随机int数(如3,5或33),它们位于int A和int B之间? (不需要使用jQuery或类似的东西)

3 个答案:

答案 0 :(得分:8)

您可以使用Javascript Math.random

function randomInRange(start,end){
       return Math.floor(Math.random() * (end - start + 1) + start);
}

答案 1 :(得分:3)

使用类似Math.floor(Math.random()*(intB-intA +1)) + intA的内容?

答案 2 :(得分:1)

像这样:

Math.floor(a + Math.random() * (b - a))

Math.random() method返回[0,1]范围内的随机浮点数 - 即0(包括)和1(不包括)之间的随机浮点数。