我尝试了以下内容:
console.log(location.hash)
if(location.hash = ''){
console.log('home')
}
我应该设置什么条件来让控制台登录回家 example.com /
答案 0 :(得分:1)
以下内容将在example.com /
上登录if(window.location.pathname == '/'){
console.log('home')
}
您需要使用路径名属性,而不是哈希。
答案 1 :(得分:0)
您是否正在测试是否存在哈希?
// If there is no hash
if(!window.location.hash){
console.log("no hash");
}
答案 2 :(得分:0)
不会设置location.hash
:
if (location.hash == null)
if (!location.hash)
在你的代码中,你正在分配!不比较!使用==
!