jQuery实现锚点scoll效果
- 发表于
- jQuery
ie6、7、8,chrome、firefox、opera和safari测试通过。
以下是代码
$('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;
var obj = document.documentElement;
if (jQuery.browser.safari)
obj = document.body
if (jQuery.browser.msie)
obj = 'html';
$(obj).animate({scrollTop: targetOffset}, 1000);
return false;
}
}
});
原文连接:jQuery实现锚点scoll效果
所有媒体,可在保留署名、
原文连接
的情况下转载,若非则不得使用我方内容。