滚动到jQuery
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了滚动到jQuery相关的知识,希望对你有一定的参考价值。
scrollTo jQuery
$(document).ready(function(){ $('a[href*=#]').click(function() { if (location.pathname.replace(/^//,'') == this.pathname.replace(/^//,'') && location.hostname == this.hostname) { var $target = $(this.hash); $target = $target.length && $target || $('[name=' + this.hash.slice(1) +']'); if ($target.length) { var targetOffset = $target.offset().top; scrollTop: targetOffset }, 1000); return false; } } }); });
以上是关于滚动到jQuery的主要内容,如果未能解决你的问题,请参考以下文章