js获取随机数的方法(搬运来的)
摘要:
<script> function GetRandomNum(Min,Max){ var Range = Max - Min; var Rand = Math.random(); return(Min + Math.round(Rand * Range)); } var num = GetRando 阅读全文
posted @ 2016-05-30 20:12 看你妹儿 阅读(8141) 评论(0) 推荐(0) 编辑