我有一个执行多次的函数。我想使用 jQuery 查找函数被调用的次数。我怎么做?
每当更改文本字段时,都会调用函数 showErrors。因此,根据页面上文本字段的数量,我应该能够找到调用 showErrors 的次数。我将如何在 showErrors 函数中检测到这一点。
showErrors: function(errorMap, errorList) {
if ($formEl.find(".aimInput input").length == 2) {
// $('.validate').html(errorList[0]['message']);
$(".aimLocal .submit").removeClass("disabled");
$(C.options.currentPage).find('input[type="submit"]').removeAttr("disabled");
}
}