所以我有一个特定的功能需要一次又一次地重复。所以我想我会做一个可以重复使用的功能。
function validate_form(field,validate) {
field.focus(function(){
$(validate).css('margin-left','206px');
$(validate).fadeIn();
$(validate).animate({
'marginLeft': '286px'
}, 'fast');
name = $(field).val();
alert(name);
});
}
调用函数我会使用类似的东西
validation_form('#contact_name','#contact_name_validate');
所以这里的想法是通过函数所需的特定选择器,但我似乎无法让它工作。Is there some special way to pass through selectors when they are used as variables in a function?