我的格式与http://jqueryvalidation.org/files/demo/dynamic-totals.html相同 仅对于下拉列表(选择),我使用输入字段。 addMethod中的第二个选项是关于select,但我想检查输入。
$.validator.addMethod("quantity", function(value, element) {
return !this.optional(element) && !this.optional($(element).parent().prev().children("select")[0]);
}, "Please select both the item and its amount.");
我试过......
return !this.optional(element) && !this.optional($(element).parent().prev().children("input")[0]);
但没有运气
答案 0 :(得分:0)
return !this.optional(element) && ($(element).parent().prev().find("input").val().length>0);