我集成了scrollify插件。每当我点击没有数据的提交按钮时,就会出错。但是这个错误对我来说是不可见的。滚动锁定滚动条。我怎么能看到这个错误。
下面是截图。
This is the footer with validation. Validation error is below submit button, could not see.
jQuery(function($) {
$(function() {
$.scrollify({
section:".panel1",
scrollSpeed:1100,
overflowScroll: false,
scrollbars: true,
touchScroll:false,
interstitialSection:"#colophon",
after:function(i) {
}
});
});
});
答案 0 :(得分:0)
在提交表单后,您需要致电$.scrollify.update()
。