我正在使用jQuery Validation plugin来验证表单,然后再将其提交给服务器。对于简单的情况,它很好用。但是我发现官方文档缺少一些更高级的示例。
想象一下,这家网店有3个位置(柏林,巴黎和罗马)。然而,仅在一个位置(柏林)提供快递服务送货。请注意:订单可以通过邮寄发送到所有三个位置。
如果用户选择结合罗马或巴黎的快递服务,我想确保验证显示错误。
我正在尝试验证两个相互依赖的选择值。 不过,我不知道该如何实现。
JsFiddle我的代码
html
<form id="myForm" name="myForm">
<p><b>Order delivery</b></p>
<p>
City<br />
<select name="city" id="city">
<option selected value="">-- Please choose destination --</option>
<option value="1">Berlin</option>
<option value="2">Paris</option>
<option value="3">Rome</option>
</select>
</p>
<p>
Delivery method<br />
<select name="delivery" id="delivery">
<option selected value="">-- Please choose delivery method --</option>
<option value="1">By post</option>
<option value="2">By courier</option>
</select>
</p>
<input type="submit" />
</form>
javascript
$( document ).ready( function () {
jQuery.validator.addMethod("valueIsDeliveryPost", function(elementValue, element, param) {
if (elementValue == 1) {
return true;
} else {
return false;
}
}, "Value must equal param.");
jQuery.validator.addMethod("valueIsDeliveryCourier", function(elementValue, element, param) {
if (elementValue == 2) {
return true;
} else {
return false;
}
}, "Value must equal param.");
jQuery.validator.addMethod("valueIsEqualTo", function(elementValue, element, param) {
return elementValue == param;
}, "Value must equal param.");
jQuery.validator.addMethod("valueIsNotEqualTo", function(elementValue, element, param) {
return elementValue != param;
}, "Value must not equal param.");
$("#myForm").validate({
debug: true,
rules: {
city: {
required: true,
valueIsNotEqualTo: "default"
},
delivery: {
required: true,
valueIsNotEqualTo: "default",
valueIsDeliveryPost: {
param: 1, // if delivery by post is selected
depends: function(element) {
var cityVal = $("#city").val();
if ((cityVal != "") && (cityVal == 1)) { // if Berlin
return false;
} else if ((cityVal != "") && (cityVal == 2)) { // if Paris
return false;
} else if ((cityVal != "") && (cityVal == 3)) { // if Rome
return false;
}/* else {
return true;
}*/
}
},
valueIsDeliveryCourier: {
param: 2, // if delivery by courier is selected
depends: function(element) {
var cityVal = $("#city").val();
if ((cityVal != "") && (cityVal == 1)) { // if Berlin
return true;
} else if ((cityVal != "") && (cityVal == 2)) { // if Paris
return false;
} else if ((cityVal != "") && (cityVal == 3)) { // if Rome
return false;
}/* else {
return true;
}*/
}
}
},
},
messages: {
city: {
required: "Please select your city!",
valueIsNotEqualTo: "Please select your city!"
},
delivery: {
required: "Please select delivery method!",
valueIsNotEqualTo: "Please select delivery method!",
valueIsDeliveryPost: "Delivery by post is possible for all cities!",
valueIsDeliveryCourier: "Courier delivery is possible only in Berlin!"
},
errorElement: "em",
errorPlacement: function (error, element) {
return false;
},
invalidHandler: function(form, validator) {
var errors = validator.numberOfInvalids();
if (errors) {
// Only show first invalid rule message
alert(validator.errorList[0].message);
// Set focus
validator.errorList[0].element.focus();
}
},
highlight: function (element, errorClass, validClass) {
$(element).addClass("is-invalid").removeClass( "is-valid" );
},
unhighlight: function (element, errorClass, validClass) {
$(element).addClass("is-valid").removeClass( "is-invalid" );
},
submitHandler: function(form) {
alert('valid form');
}
}
});
});
我认为问题的原因可能是依赖选择验证代码中的逻辑错误。
我在做什么呢?
请分享您的专业知识和想法。
答案 0 :(得分:1)
您的逻辑似乎工作正常。
如果单击your jsFiddle中的“整洁”按钮,则会看到您错误地嵌套了errorElement
,errorPlacement
,invalidHandler
,submitHandler
, highlight
中的unhighlight
和messages
选项。
这些选项应该是messages
和rules
的兄弟姐妹。
$("#myForm").validate({
rules: {
....
},
messages: {
....
},
errorElement: "em",
errorPlacement: function (error, element) {
....
},
invalidHandler: function(form, validator) {
....
},
highlight: function (element, errorClass, validClass) {
....
},
unhighlight: function (element, errorClass, validClass) {
....
},
submitHandler: function(form) {
....
}
});
注意:我完全同意Daniel的看法。首先,向用户显示无效选项是没有意义的,并且从option
动态添加/删除select
会容易得多。
这是一个非常粗糙的概念证明:
$('#city').on('change', function() {
if ($(this).val() == '1') {
$('#delivery option[value="1"]').remove();
}
});
或者您可以disable the option
by ghosting it out:
$('#city').on('change', function() {
var option = $('#delivery option[value="1"]');
if ($(this).val() == '1') {
option.attr('disabled', true);
} else {
option.attr('disabled', false);
}
});