返回 m 到 n 的随机整数
<script type="text/javascript"> function randomNumber(m.n){ return Math.round(Math.random()*(n-m)+m); } </script>