Commit 2cbc9744 by agan

xg

parent d4b728d3
Showing with 8 additions and 0 deletions
......@@ -146,6 +146,14 @@
getUserInfo()
var len = len || 32;
var chars = 'ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz0123456789';
var maxPos = chars.length;
var pwd = '';
for (var i = 0; i < len; i++) {
pwd += chars.charAt(Math.floor(Math.random() * maxPos));
}
var rechargeCid = '';
if (sessionStorage.cid == undefined || sessionStorage.cid == 'undefined') {
rechargeCid = 'cid';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment