标签:js

js

js生成随机数字

js生成随机数字
function GetRandomNum(Min,Max) { var Range = Max - Min; var Rand = Math.random(); return(Min + Math.round(Rand * Range)); } var num = GetRan...

4年前 (2021-11-03) 喜欢

js

js生成随机字符串

js生成随机字符串
export function randomString(e) { e = e || 32; var t = "ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz2345678", a = t.length, n =...

4年前 (2021-11-03) 喜欢