hirokonaBlog

ググる→忘れそう→即時メモ 京都のWebデザイナーの備忘録

jQuery.hashchange

■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]


投稿日

カテゴリー:

投稿者:

タグ:

コメント

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください