我正在尝试使用 errorPlacement 选项,如下所示:
$("#MyForm").validate({
rules: {
'brand': {
required: true,
errorPlacement : function(error, element){
console.log(error);
console.log(element);
error.appendTo(element.parent('div.formRight'));
error.css("clear", "both");
}
}
但由于某种原因,该函数只接收一个参数(元素)......在控制台日志中的错误参数中有元素引用,而元素参数未定义。
是否有特定的方法来引用错误元素?
谢谢