用Math.round(Math.random()*10);时,可基本均衡获取0到10的随机整数
再乘以10你看行不,思密达
Math.round(Math.random()*10);
(int)(Math.random()*11)
碧粗
<察慧乱body>
<败档script>
function random_num(){
var t=Math.ceil(Math.random()*10);
if( t==0 )
{ random_num(); }
else
{ document.write(t); }
}
random_num();