Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
window.location.hash のハッシュを変更して「this.id」に置き換えることができるかどうか疑問に思っています。または、window.location 全体を変更する必要がありますか?
はい、できます。私は自分のサイトの1つで同様のことをしますが、のhref代わりにを使用しますが、同様idにid機能します。簡単な例:
href
id
$('a[id]').click(function(e) { // This will change the URL fragment. The change is reflected // on your browser's address bar as well window.location.hash = this.id; e.preventDefault(); });