7
我想僅針對特定字段自定義errorPlacement
,並按照插件的默認位置爲其餘字段。例如:只針對某些字段自定義jQuery驗證的errorPlacement
errorPlacement : function(error, element) {
if($(element).prop("id") === "mySpecialField") {
$("#mySpecialErrorMessageHolder").append(error);
}
else {
// this is not valid syntax but it's what I really want...
super.errorPlacement(error, element);
}
}
這可能嗎?