gpt4 book ai didi

JavaScript:如果名称或密码小于 6,则添加警报消息

转载 作者:行者123 更新时间:2023-11-28 16:48:34 25 4
gpt4 key购买 nike

尝试在JS中添加功能,其中警告框将显示消息密码或用户名必须大于6:

密码:

Password must have atleast 6 characters

用户名:

Username must have atleast 6 characters

到目前为止,如果 Pass 或用户名是 NULL,我会收到函数显示警报

JaveScript 代码:

    function validateForm() {
var x = document.forms["myForm"]["namapengguna"].value;
if (x == "" || x == null) {
alert("Nama must be filled out");
return false;
}
var x = document.forms["myForm"]["username"].value;
if (x == "" || x == null) {
alert("User must be filled out");
return false;
}
var x = document.forms["myForm"]["password"].value;
if (x == "" || x == null) {
alert("Pass must be filled out");
return false;
}
var x = document.forms["myForm"]["confirm_password"].value;
if (x == "" || x == null) {
alert("Confirm Pass must be filled out");
return false;
}
else {
alert('Application Has Been Registered');
location.assign("homeA.php");
}
}

但我不知道如何在名称或密码小于 6 的情况下添加警报消息。

任何想法或解决方案都非常感谢。

p/s:如果我的问题不足以让您理解,请告诉我,以便我改进。

最佳答案

您可以通过执行x.length来检查字符串长度。所以:

if (x.length <= 6) {
// Do what you want
}

您可能还想确保用户没有在字段的开头或结尾输入任何空格。

关于JavaScript:如果名称或密码小于 6,则添加警报消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60254884/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com