我试图在后面的代码中执行其他功能之前验证表单中的几个文本框,所以我得到了:
var validForm; // **If i set it there to true it will always be true**
$('#Form :input').each(function () {
var id = this.id;
var value = this.value;
var isMatch = id.substring(0, 4) == "txt_";
if (isMatch == true) {
if (($.trim(value) == 0 ) {
alert("invalid " + id);
valid = false;
} // **if I include a else here it will not be valid as it is foreach loop**
}
});
if (validForm == true) {
$.ajax({
type: "POST",
url: "Form.aspx/Print",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
if (msg.d == 'Success') {
}
}
});
}
如果我在 foreach 循环中执行 else 语句并将validForm
变量设置为 true,它将无法正常工作,因为最后一个文本框有效且无效,那么它将我的变量设置为 true(请参阅代码注释)。
另一方面,如果我validForm
在开始时指定一个 true ,那么它将始终为 true (参见代码注释)。
关于如何克服这个问题的任何想法?