gpt4 book ai didi

javascript - 验证失败时禁用按钮

转载 作者:行者123 更新时间:2023-12-01 05:31:49 25 4
gpt4 key购买 nike

我有一张表单,其中有一个提交按钮,我想禁用提交按钮,直到所有验证都为真。

目前,当一个验证为 true 时,按钮就会启用。 (甚至其他字段也有红色错误消息。)

<script>           
$(document).ready(function() {
$('[data-toggle="tooltip"]').tooltip();
$('#payment-form').formValidation({
framework: 'bootstrap',
trigger: 'change',
fields: {
first_name: {
validators: {
notEmpty: {
message: 'The First Name field is required and cannot be empty'
}
// regexp: {
// regexp: /^[a-z\\s]+$/i,
// message: 'The first name field can consist of alphabetical characters and spaces only'
// }
}
},
last_name: {
validators: {
notEmpty: {
message: 'The Last Name is required and cannot be empty'
}
// regexp: {
// regexp: /^[a-z\\s]+$/i,
// message: 'The Last name can consist of alphabetical characters and spaces only'
// }
}
},
}
});


}).on('success.form.fv', function (e) {
$('#continue_btn').attr('disabled','false');
e.preventDefault();

});
var i = 0;
var l=0;

$('#zip_code').keydown(function()
{

var country_check = $('#country').val();
if(country_check=='India')
{
$('#zip_code').attr('maxlength', '6');
}
else
{
$('#zip_code').attr('maxlength', '10');
}

});
</script>

如何做到这一点?

最佳答案

在 formValidation 中设置以下属性,如表单设置中所示: http://formvalidation.io/settings/

$('#data_form').formValidation({
...
button: {
selector: "#id_submit_btn",
disabled: "disabled"
}
....
});

关于javascript - 验证失败时禁用按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36790823/

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