我正在使用 JavaScript 导航到主页上的锚点。在主页中,当我单击锚链接时,url 保持不变:localhost/(使用 javascript ScrollTo),但是当我尝试从单独的页面链接到该锚标记时,它会在 url 中显示锚标记。本地主机/#anchor。
如何屏蔽 url 以不显示锚标记?
<li><%= link_to "Anchor", root_path(:anchor => 'anchor') %></li>
jQuery:
$('a[href*=#]:not([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) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}