如何控制滚动位置以从 jQuery AJAX 定位显示的错误 return
how to control scroll location to locate displayed error return from jQuery AJAX
我想将返回的错误文本降低到视图中,或者将输入字段的焦点从顶部降低约 150 像素,因为目前错误文本是不可见的。
我正在使用 https://jqueryvalidation.org/ 进行表单验证,并像这样调用验证:
$("form#option1").validate({
lang: 'de'
});
我正在使用它来隐藏和显示导航栏
function hasScrolled() {
var st = $(this).scrollTop();
// Make sure they scroll more than delta
if(Math.abs(lastScrollTop - st) <= delta)
return;
// If they scrolled down and are past the navbar, add class .nav-up.
// This is necessary so you never see what is "behind" the navbar.
if (st > lastScrollTop && st > navbarHeight){
// Scroll Down
$('#header_phone').removeClass('nav-down').addClass('nav-up');
$('#header_ipad').removeClass('nav-down').addClass('nav-up');
} else {
// Scroll Up
if(st + $(window).height() < $(document).height()) {
$('#header_phone').removeClass('nav-up').addClass('nav-down');
$('#header_ipad').removeClass('nav-up').addClass('nav-down');
}
}
lastScrollTop = st;
}
我通过将此添加到提交按钮来隐藏导航,现在想使用某些功能将错误文本推送到视图中。
$( "#RequestQuote" ).click(function() {
setTimeout(function() {
$('#header_phone').removeClass('nav-down').addClass('nav-up');
$('#header_ipad').removeClass('nav-down').addClass('nav-up');
// move selected in focus element x mount from top
}, 100);
});
字段上方的错误文本是这样保存的:
<label for="fieldname" generated="true" class="error"></label>
我刚开始工作
var validator1 = $("form#option1").validate({
lang: 'de',
focusInvalid: false,
invalidHandler: function(form, validator) {
if (!validator.numberOfInvalids())
return;
$('html, body').animate({
scrollTop: $(validator.errorList[0].element).offset().top-140
}, 1200);
}
});
我想将返回的错误文本降低到视图中,或者将输入字段的焦点从顶部降低约 150 像素,因为目前错误文本是不可见的。
我正在使用 https://jqueryvalidation.org/ 进行表单验证,并像这样调用验证:
$("form#option1").validate({
lang: 'de'
});
我正在使用它来隐藏和显示导航栏
function hasScrolled() {
var st = $(this).scrollTop();
// Make sure they scroll more than delta
if(Math.abs(lastScrollTop - st) <= delta)
return;
// If they scrolled down and are past the navbar, add class .nav-up.
// This is necessary so you never see what is "behind" the navbar.
if (st > lastScrollTop && st > navbarHeight){
// Scroll Down
$('#header_phone').removeClass('nav-down').addClass('nav-up');
$('#header_ipad').removeClass('nav-down').addClass('nav-up');
} else {
// Scroll Up
if(st + $(window).height() < $(document).height()) {
$('#header_phone').removeClass('nav-up').addClass('nav-down');
$('#header_ipad').removeClass('nav-up').addClass('nav-down');
}
}
lastScrollTop = st;
}
我通过将此添加到提交按钮来隐藏导航,现在想使用某些功能将错误文本推送到视图中。
$( "#RequestQuote" ).click(function() {
setTimeout(function() {
$('#header_phone').removeClass('nav-down').addClass('nav-up');
$('#header_ipad').removeClass('nav-down').addClass('nav-up');
// move selected in focus element x mount from top
}, 100);
});
字段上方的错误文本是这样保存的:
<label for="fieldname" generated="true" class="error"></label>
我刚开始工作
var validator1 = $("form#option1").validate({
lang: 'de',
focusInvalid: false,
invalidHandler: function(form, validator) {
if (!validator.numberOfInvalids())
return;
$('html, body').animate({
scrollTop: $(validator.errorList[0].element).offset().top-140
}, 1200);
}
});