JavaScript random() 方法
實(shí)例
返回介于 0(包含) ~ 1(不包含) 之間的一個(gè)隨機(jī)數(shù):
Math.random();
輸出結(jié)果:
document.write(Math.random());
嘗試一下 ?
定義和用法
random() 方法可返回介于 0(包含) ~ 1(不包含) 之間的一個(gè)隨機(jī)數(shù)。
瀏覽器支持
所有主要瀏覽器都支持 random() 方法
語法
Math.random()
返回值
類型 | 描述 |
---|---|
Number | 0.0 ~ 1.0(不包含) 之間的一個(gè)偽隨機(jī)數(shù)。 |
技術(shù)細(xì)節(jié)
JavaScript 版本: | 1.0 |
---|
更多實(shí)例
實(shí)例
在本例中,我們將取得介于 1 到 10 之間的一個(gè)隨機(jī)數(shù):
Math.floor((Math.random()*10)+1);
輸出結(jié)果:
document.write(Math.floor((Math.random()*10)+1));
嘗試一下 ?
實(shí)例
在本例中,我們將取得介于 1 到 100 之間的一個(gè)隨機(jī)數(shù):
Math.floor((Math.random()*100)+1);
輸出結(jié)果:
document.write(Math.floor((Math.random()*100)+1));
嘗試一下 ?
更多建議: