jquery如何实现锚点链接之间的平滑滚动
时间:2021-03-16 10:23:17|栏目:jquery|点击: 次
复制代码 代码如下:
$('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;
$('html,body').animate({
scrollTop: targetOffset
},
500);
return false;
}
}
});
上一篇:jQuery Easyui加载表格出错时在表格中间显示自定义的提示内容
栏 目:jquery
下一篇:jquery 实现两Select 标签项互调示例代码
本文地址:http://www.codeinn.net/misctech/82121.html