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が定義されているかどうかを確認する方法はありますか?
window.location.hash
設定されている場合は、変数の値を取得し、それを使用してページに追加のコンテンツを表示します。
if(window.location.hash) { // do stuff! }
どうですか:
if(window.location.hash !== '') { }
または
if(typeof window.location.hash !== 'undefined') { //your code }