■hashchange周りでおこったバグ
・IE8でタイトルにハッシュ以下の文字列が自動的につく
→タイトル上書きで対応
[html]
var newhash = window.location.hash.substring(1);
document.title = ‘PageTitle | ‘ + newhash;
[/html]
http://stackoverflow.com/questions/9341151/jquery-hashchange
・バグというかIE6ではhash以下のアドレスが下記では取得できない
[html]
window.location.hash.substring(1);
[/html]
ので下記で取る
[html]
window.location.hash.substring(1) + window.location.search;
[/html]
コメントを残す