如何绕过此验证以便不会看到此提醒:alert('The provided zipvcode ' + zip + ' does not belong in ' + state );
我以前有像exp Illinois = IL这样的初始状态,现在我确实有数字Illinois = 01,我的代码是在一个有500多种形式的平台上,只有10个需要有状态值数字所以我在思考绕过验证,这有意义吗?
谢谢,
function validate_zip_state() {
// Get the zip
var zip = $('#postal_code').val();
// Get the state
var state = $('#state option:selected').val();
// Regex exp for zip formatting
var the_exp = /^\d{5}$|^\d{5}-\d{4}$/;
//var the_exp_state = /^[a-zA-Z]{2}$/;
if( ! the_exp.test(zip) ) {
return false;
}
if(state != '') {
var return_val = '';
{
zip: zip,
state: state
},
function(data) {
if(data == '0') {
alert('The provided zipcode ' + zip + ' does not belong in ' + state );
return false;
} else {
return true;
}
}
);
} else {
return true;
}
return true;
}
所以这就是我自己做的是我设法在表单上禁用警报
通过function alert() { }
但是这会禁用我表单上的所有提醒,我只想禁用与该代码相关的提醒