gpt4 book ai didi

javascript - jQuery Validation Plugin 停止表单提交,提交按钮不起作用

转载 作者:数据小太阳 更新时间:2023-10-29 05:16:24 27 4
gpt4 key购买 nike

以下脚本使用 jQuery 验证插件 - http://docs.jquery.com/Plugins/Validation - 阻止发送此处找到的表单:

http://www.bestcastleintown.co.uk/book2.php

请填写表格并观察验证消息消失,然后尝试按发送,这似乎无法发送,我不明白为什么。

删除此脚本后,联系表单将正常运行并允许发送。因此,我认为这是造成问题的原因。任何帮助或建议将不胜感激。

<script type="text/javascript">
jQuery.validator.setDefaults({
debug: true,
success: "valid"
});;
</script>

<script>
$(document).ready(function() {
$("#aform").validate({
rules: {
postcode: {required: true,minlength: 6},
phone: {required: true,number: true}

}
});
});
</script>

最佳答案

您正在 Debug模式下运行验证器。 relevant documentation说(强调我的):

debug Boolean Default: false

Enables debug mode. If true, the form is not submitted and certain errors are displayed on the console (requires Firebug or Firebug lite). Try to enable when a form is just submitted instead of validation stopping the submit.

删除 debug: true 选项将解决您的问题。

关于javascript - jQuery Validation Plugin 停止表单提交,提交按钮不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11686889/

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