自动向上滚动
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自动向上滚动相关的知识,希望对你有一定的参考价值。
Used to automatically scroll up the page so that it is focused on user entry (mobile devices)
var clicked = false; $(document).on('click', '#msisdn-input' , function(e){ e.preventDefault(); if(clicked===false){ window.scrollTo(0,1); clicked = true; } setTimeout(function(){ $('#scroll').css('float','left'); scrollSize = $('.submit-button').offset().top + $('.submit-button').outerHeight()+5; console.log(scrollSize); screenSize = $(window).height(); result = (scrollSize-screenSize); if(result>0){ } },700); });
以上是关于自动向上滚动的主要内容,如果未能解决你的问题,请参考以下文章
谷歌地图片段在 NestedScrollView 内滚动