hashchangeの履歴
$(function(){ // Bind the event. $(window).hashchange( function(){ // Alerts every time the hash changes! alert( location.hash ); }) // Trigger the event (useful on page load). $(window).hashchange(); });
$(function(){ // Bind the event. $(window).hashchange( function(){ // Alerts every time the hash changes! alert( location.hash ); }) // Trigger the event (useful on page load). $(window).hashchange(); });