gpt4 book ai didi

javascript - JQuery Ajax提交功能添加验证

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

我正在使用此代码:

function submitForm() {
$.ajax({type:'POST',
url: 'index.php',
data:$('#ContactForm').serialize(),
success: function(response) {
$('#ContactForm').find('.form_result').html(response);
}}
);
return false;
}

它运行良好,但我如何添加验证,例如......以在用户名或密码为空时发出警报?

我知道周围有很多类似的脚本,但我想特别将其添加到这个脚本中。

最佳答案

使用beforeSend()

  function submitForm() {
$.ajax({type:'POST',
url: 'index.php',
data:$('#ContactForm').serialize(),
success: function(response) {
$('#ContactForm').find('.form_result').html(response);
}},
beforeSend: function(){
if(!$("#name").val()){
alert("name field is empty.");
return false;
}
}
);
return false;
}

关于javascript - JQuery Ajax提交功能添加验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22113248/

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