我希望当用户输入超过 15 个密码时生成错误

问题描述 投票:0回答:1

我正在构建一个密码生成器,我将其设置为最大 15,但我意识到,如果用户输入高于 15 的数字,它会接受并生成它,但事实并非如此。

我想让它有一个限制,即使用户输入生成超过15个密码长度,它也会拒绝它或发送错误消息。

javascript forms passwords
1个回答
0
投票

如果没有任何代码,很难回答你的问题。但据我了解,您只需要检查字符串(密码)的长度。这可以使用简单的 if 语句轻松完成

function checkStringLength(str) {
    if (str.length > 15) {
        Console.log("The string length is greater than 15.");
    } else {
        console.log("The string length is acceptable.");
        // rest of your code goes here
    
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.