0
0
Fork 0

fix: fix Bug 531 and use ES6 grammar

Bug502-YuGaoXiang
吴宇涵 2023-05-06 17:24:51 +08:00
parent 688ed72473
commit f64d06fbbf
1 changed files with 3 additions and 3 deletions

View File

@ -68,9 +68,9 @@
<script>
// 密码生成器
function generatePassword(length) {
var charset = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()_+~`|}{[]\:;?><,./-=";
var password = "";
for (var i = 0; i < length; i++) {
const charset = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^*()_+~`|}{[]\:;?,./-=";
let password = "";
for (let i = 0; i < length; i++) {
password += charset.charAt(Math.floor(Math.random() * charset.length));
}
return password;