我在将表单提交到服务器之前使用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');
}
}
});
});
我认为问题的原因可能是依赖选择验证代码中的错误逻辑。
我在做什么?
请分享您的专业知识和想法。
你的逻辑似乎工作正常。
如果你单击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) {
....
}
});
但是:Kua zxsw指出
注意:我完全赞同丹尼尔。首先向用户显示无效选项是没有意义的,并且从jsfiddle.net/pey29j4n/2/动态添加/删除option
会容易得多。
这是一个非常粗略的概念验证:
select
或者你可以$('#city').on('change', function() {
if ($(this).val() == '1') {
$('#delivery option[value="1"]').remove();
}
});
:
disable the option
by ghosting it out