不要使用jquery验证器关注错误字段

时间:2016-01-14 14:33:14

标签: jquery jquery-validate

我在表单上方放置了一个ID为com.fasterxml.jackson.databind.JsonMappingException: No serializer found for class com.foo.bar.Baz and no properties discovered to create BeanSerializer (to avoid exception, disable SerializationFeature.FAIL_ON_EMPTY_BEANS) ) 的空白div。发生错误时,我会在代码下面运行,

#summery

代码工作正常,但另外,页面焦点移动到第一个错误输入字段。我不想要这种行为,而是希望我的焦点在showErrors: function(errorMap, errorList) { $("#summary").html("Your form contains <a href='#' class='errorCnt'>" + this.numberOfInvalids() + " errors</a>, see details below."); this.defaultShowErrors(); } 上,当我点击#summary时,焦点会移到第一个错误字段。

1 个答案:

答案 0 :(得分:-1)

您想使用.focus() jquery方法

$( "#summary" ).focus();