码迷,mamicode.com
首页 > 微信 > 详细

js 生成32位随机数,可用于微信支付流水号(前端生成)

时间:2019-11-19 17:18:14      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:cti   字符   流水号   color   span   col   32位   def   rand   

$(function () {
            /*生成32位随机流水号*/
            /*默认去掉了容易混淆的字符oOLl,9gq,Vv,Uu,I1*/
            var $chars = ‘ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz2345678‘;
            var maxPos = $chars.length;
            var pwd = ‘‘;
            for (i = 0; i < 32; i++) {
                 pwd += $chars.charAt(Math.floor(Math.random() * maxPos));
            }

js代码生成32位随机数 可用于微信支付流水号(前端js生成)

js 生成32位随机数,可用于微信支付流水号(前端生成)

标签:cti   字符   流水号   color   span   col   32位   def   rand   

原文地址:https://www.cnblogs.com/yydxh/p/11890378.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!