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;
}
}