摘要: //最大值 5 最小值 1var fround = LimitRandom(1,5)alert(fround); function LimitRandom(min,max){ var fRound = Math.floor(Math.random()*(max-min+1)+min); return 阅读全文
posted @ 2019-09-10 10:05 金牛座的女孩 阅读(1643) 评论(0) 推荐(0) 编辑