从网址传一个参数过来,后面带有#,比如:http://www.abc.com/index.html#my
转到这个页面我需要平滑滚动到这个容器。
用下面代码:
//下滑到相关地方 if(location.hash){ $("html,body").animate({scrollTop: $(location.hash).offset().top}, 1000); }
这样就可以了。
从网址传一个参数过来,后面带有#,比如:http://www.abc.com/index.html#my
转到这个页面我需要平滑滚动到这个容器。
用下面代码:
//下滑到相关地方 if(location.hash){ $("html,body").animate({scrollTop: $(location.hash).offset().top}, 1000); }
这样就可以了。
You can follow any responses to this entry through the RSS 2.0 Both comments and pings are currently closed.