摘要: var getRandom = function(max, min) { min = arguments[1] || 0; return Math.floor(Math.random() * (max - min + 1) + min); }; 阅读全文
posted @ 2017-01-13 16:24 佛陀 阅读(497) 评论(0) 推荐(0) 编辑