小陆博客

为站长提供建站技巧、网站运营、搜索优化、建站方向以及利用网站赚钱与创业的知识与经验。

热门搜索:

js 随机字符串

9506 浏览
0 评论
内容
```js export function randomStr(len, type = 1) { var d, e, b = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789', c = '', f = 'abcdefghijklmnopqrstuvwxyz0123456789', i = '' if (type == 1) { i = f } else { i = b } for (d = 0; len > d; d += 1) { ;(e = Math.random() * i.length), (e = Math.floor(e)), (c += i.charAt(e)) } return c.toLowerCase() } ```
```js export function randomStr(len, type = 1) { var d, e, b = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789', c = '', f = 'abcdefghijklmnopqrstuvwxyz0123456789', i = '' if (type == 1) { i = f } else { i = b } for (d = 0; len > d; d += 1) { ;(e = Math.random() * i.length), (e = Math.floor(e)), (c += i.charAt(e)) } return c.toLowerCase() } ```

评论 (0)

评论功能正在开发中...