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