在我的主页上,我有一个带有 ID 的菜单,当我单击它时,它会滑动到相应的 div 并且它可以正常工作。
但是当我不在我的主页上并且我单击一个我希望能够转到主页然后滑动到该部分的项目时。
这是我现在使用的代码:
$('#mainMenu a').click(function(e){
e.preventDefault();
var div = $(this).attr('href');
if('<?=get_site_url()?>/' == '<?=get_permalink()?>')
{
$('html, body').animate({scrollTop:$(div).position().top}, 'slow');
}
else
{
window.location.href = '<?=get_site_url()?>/'+div;
}
});
这很好用,下一部分可以用,但我不能让它滑到 ID 上。
if (window.location.hash != "") {
e.preventDefault();
$('html, body').animate({scrollTop:$(window.location.hash).position().top}, 'slow');
}
有没有办法可以防止浏览器直接跳转到该部分而不是滑动到它?