Math.random()方法返回一個(gè)隨機(jī)數(shù),范圍從0(包括)到1(但不包括)。
由于random()是Math的靜態(tài)方法,因此您始終將其用作Math.random(),而不是用作創(chuàng)建的Math對象的方法。
Math.random()
Math.random();測試看看?/?
所有瀏覽器都完全支持Math.random()方法:
Method | ![]() | ![]() | ![]() | ![]() | ![]() |
Math.random() | 是 | 是 | 是 | 是 | 是 |
返回值: | 介于0(含)和1(不含)之間的浮點(diǎn)偽隨機(jī)數(shù) |
---|---|
JavaScript版本: | ECMAScript 1 |
返回1到10之間的隨機(jī)數(shù):
Math.floor((Math.random() * 10) + 1);測試看看?/?
返回11到20之間的隨機(jī)數(shù):
Math.floor((Math.random() * 10) + 11);測試看看?/?
返回鼠標(biāo)移動(dòng)的隨機(jī)數(shù):
將鼠標(biāo)指針移到下面的DIV上:
0.4194069268886713