gpt4 book ai didi

JavaScript 链接错误

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

我正在使用 JavaScript 来验证电子邮件。问题是,当电子邮件 ID 不匹配时,就会出现一个警报按钮。一旦我点击按钮,它仍然会带我到另一个页面,而不是同一页面来更正我的邮件 ID。

HTML:

<label for="department">Email ID</label>
<input type="email" size="30" name="email" id="email" required />
<label for="department">Confirm Email ID</label>
<input type="email" size="30" name="cname" id="confirm_email" required />
<input type="submit" name="submit" value="submit" class="button" onClick="validate()">

JavaScript:

function validate()
{
if(document.getElementById("email").value != document.getElementById("confirm_email").value)
alert("Email do no match");
}

最佳答案

您需要告诉提交按钮不执行提交

function validate()
{
if (document.getElementById("email").value!=document.getElementById("confirm_email").value) {
alert("Email do no match");
return false;
}
}

关于JavaScript 链接错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28406271/

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