3 回答

TA貢獻(xiàn)1834條經(jīng)驗(yàn) 獲得超8個(gè)贊
如果您想覆蓋頁(yè)面上的標(biāo)準(zhǔn)href-id導(dǎo)航而不更改HTML標(biāo)記以進(jìn)行平滑滾動(dòng),請(qǐng)使用以下示例(示例):
// handle links with @href started with '#' only
$(document).on('click', 'a[href^="#"]', function(e) {
// target element id
var id = $(this).attr('href');
// target element
var $id = $(id);
if ($id.length === 0) {
return;
}
// prevent standard hash navigation (avoid blinking in IE)
e.preventDefault();
// top position relative to the document
var pos = $id.offset().top;
// animated top scrolling
$('body, html').animate({scrollTop: pos});
});
添加回答
舉報(bào)