次のコードはChromeでエラーを出します。window.location.href
文字列を返さないようですが、それはおかしいようです。
コードは次のとおりです。
var theUrl = "" + window.location.href;
var hashValue = theUrl.contains("#") ? theUrl.split('#')[1] : null; (This is line 6)
これにより、Chromeで次のエラーが返されます。
Uncaught TypeError: Object someUrl#someHash has no method 'contains' myFile.js:6
(anonymous function) faq.js:6
k jquery.min.js:2
l.fireWith jquery.min.js:2
p.extend.ready jquery.min.js:2
D
何か案は?
編集:またdocument.URL
無駄に試みた。