页面根目录上location.hash的条件是什么?

时间:2014-09-03 15:30:30

标签: javascript

我尝试了以下内容:

    console.log(location.hash)
    if(location.hash = ''){
        console.log('home')
    }

我应该设置什么条件来让控制台登录回家 example.com /

3 个答案:

答案 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)

在你的代码中,你正在分配!不比较!使用==