gpt4 book ai didi

javascript - 页面根目录中location.hash的条件是什么?

转载 作者:行者123 更新时间:2023-12-03 11:54:51 25 4
gpt4 key购买 nike

我尝试了以下方法:

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

例如,我应该设置什么条件才能让控制台登录主页example.com/

最佳答案

以下内容将登录 example.com/主页

if(window.location.pathname == '/'){
console.log('home')
}

您需要使用路径名属性,而不是哈希

关于javascript - 页面根目录中location.hash的条件是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25648285/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com