Welcome to Delicate template
Header
Just another WordPress site
Header

平滑滚动到url#后面的参数id容器

1月 10th, 2014 | Posted by 无 名 in jQuery | js

从网址传一个参数过来,后面带有#,比如: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.