我在表单上方放置了一个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
时,焦点会移到第一个错误字段。
答案 0 :(得分:-1)
您想使用.focus()
jquery方法
$( "#summary" ).focus();