gpt4 book ai didi

javascript - 用于验证输入文本字段的单个 JavaScript 函数

转载 作者:行者123 更新时间:2023-12-04 14:16:48 25 4
gpt4 key购买 nike

<分区>

我正在尝试编写一个函数,该函数可以在将数据提交给 Php(通过 Ajax)进行处理之前检查输入 [text] 是否为空...此函数返回 true 或 false 并显示错误如果输入字段为空(由另一个函数处理),则显示消息。该函数按预期工作,但当我涉及两个字段时,if 语句中断。这是代码:

const email = document.getElementById('username');
const password = document.getElementById('password');

if(verifyInput(email) && verifyInput(password)) {
console.log('Ready');
}

因此,如果我的电子邮件为空,则下一个函数调用 verifyInput(password) 永远不会执行。

现在,我找到了使用乘法运算的解决方法:

if(verifyInput(email) * verifyInput(password)) {
console.log('Ready');
}

我想知道是否有更好的方法来解决这个问题。

干杯。

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