用哪个函数能得到随机数值?
谢谢,我知道我很菜,可我真的不知道怎么弄。。。。。
------解决方案--------------------Math.random()
------解决方案--------------------JS的话Math.random()
例如
返回10-20的随机数
document.write(Math.random()*(20-10)+10);
------解决方案--------------------Math.random()
------解决方案--------------------JScript code
function random(min, max){
min = min || 0;
max = max || 0;
return parseInt(Math.random() * (max - min + 1) + min);
}
alert( random(3, 5) ) //随机区间 3-5 包括3 和 5