I'm trying to clear a bunch of error styling on form elements whenever top level radio buttons are checked. 我试图找到:
- 提高性能的替代方法和结构
一种用于查找所有表单元素的链接方法,因此我不会进行太多调用..(不确定是否可能)。
// 在调用下面的函数之前定义的全局变量或作用域变量..
JS
var target = jQuery("#cachedElement");
function functionWithManyReferencesToTarget() {
target.find("input").each(function() {
$(this).removeClass("formError error-state");
});
target.find("label").each(function() {
$(this).removeClass("formError error-state");
});
target.find("select").each(function() {
$(this).removeClass("formError error-state");
});
}